about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/knightos/kpack/default.nix
blob: 447959a1e612908785af1d2a7720b92bb4781f73 (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
{ 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";
    license     = licenses.lgpl2Only;
    maintainers = with maintainers; [ siraben ];
    platforms   = platforms.unix;
  };
}