about summary refs log tree commit diff
path: root/pkgs/development/tools/knightos/kpack/default.nix
blob: 5035b064b6554710436cacd1f312b609be89b50f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ 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 = "A tool to create or extract KnightOS packages";
    mainProgram = "kpack";
    license     = licenses.lgpl2Only;
    maintainers = with maintainers; [ siraben ];
    platforms   = platforms.unix;
  };
}