depot/third_party/nixpkgs/pkgs/development/tools/knightos/kpack/default.nix
Default email bcb2f287e1 Project import generated by Copybara.
GitOrigin-RevId: d603719ec6e294f034936c0d0dc06f689d91b6c3
2024-06-20 20:27:18 +05:30

29 lines
691 B
Nix

{ lib, stdenv, fetchFromGitHub, cmake, asciidoc, libxslt }:
stdenv.mkDerivation rec {
pname = "kpack";
version = "1.1.1";
src = fetchFromGitHub {
owner = "KnightOS";
repo = "kpack";
rev = version;
sha256 = "1l6bm2j45946i80qgwhrixg9sckazwb5x4051s76d3mapq9bara8";
};
strictDeps = true;
nativeBuildInputs = [ asciidoc cmake libxslt.bin ];
hardeningDisable = [ "fortify" ];
meta = with lib; {
homepage = "https://knightos.org/";
description = "Tool to create or extract KnightOS packages";
mainProgram = "kpack";
license = licenses.lgpl2Only;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
}