depot/third_party/nixpkgs/pkgs/development/tools/knightos/kpack/default.nix
Default email 587713944a Project import generated by Copybara.
GitOrigin-RevId: 6143fc5eeb9c4f00163267708e26191d1e918932
2024-04-21 17:54:59 +02:00

29 lines
693 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 = "A tool to create or extract KnightOS packages";
mainProgram = "kpack";
license = licenses.lgpl2Only;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
};
}