2021-02-17 17:02:09 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub, cmake, asciidoc, libxslt }:
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "kpack";
|
|
|
|
|
2020-11-03 02:18:15 +00:00
|
|
|
version = "1.1.1";
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "KnightOS";
|
|
|
|
repo = "kpack";
|
|
|
|
rev = version;
|
2020-11-03 02:18:15 +00:00
|
|
|
sha256 = "1l6bm2j45946i80qgwhrixg9sckazwb5x4051s76d3mapq9bara8";
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
strictDeps = true;
|
2020-09-25 04:45:31 +00:00
|
|
|
|
2021-02-17 17:02:09 +00:00
|
|
|
nativeBuildInputs = [ asciidoc cmake libxslt.bin ];
|
2020-09-25 04:45:31 +00:00
|
|
|
|
|
|
|
hardeningDisable = [ "fortify" ];
|
|
|
|
|
2021-01-15 22:18:51 +00:00
|
|
|
meta = with lib; {
|
2020-09-25 04:45:31 +00:00
|
|
|
homepage = "https://knightos.org/";
|
|
|
|
description = "A tool to create or extract KnightOS packages";
|
|
|
|
license = licenses.lgpl2Only;
|
|
|
|
maintainers = with maintainers; [ siraben ];
|
2020-10-19 00:13:06 +00:00
|
|
|
platforms = platforms.unix;
|
2020-09-25 04:45:31 +00:00
|
|
|
};
|
|
|
|
}
|