nixpkgs/pkgs/development/tools/knightos/kimg/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
710 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, cmake, libxslt, asciidoc }:
2020-08-21 09:39:38 +03:00
stdenv.mkDerivation rec {
pname = "kimg";
2020-12-20 18:36:06 +03:00
version = "0.4.0";
2020-08-21 09:39:38 +03:00
src = fetchFromGitHub {
owner = "KnightOS";
repo = "kimg";
rev = version;
2020-12-20 18:36:06 +03:00
sha256 = "040782k3rh2a5mhbfgr9gnbfis0wgxvi27vhfn7l35vrr12sw1l3";
2020-08-21 09:39:38 +03:00
};
strictDeps = true;
nativeBuildInputs = [ asciidoc cmake libxslt.bin ];
2020-08-21 09:39:38 +03:00
hardeningDisable = [ "format" ];
meta = with lib; {
2020-08-21 09:39:38 +03:00
homepage = "https://knightos.org/";
2020-12-20 18:36:06 +03:00
description = "Converts image formats supported by stb_image to the KnightOS image format";
mainProgram = "kimg";
2020-08-21 09:39:38 +03:00
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
2020-12-20 18:36:06 +03:00
platforms = platforms.all;
2020-08-21 09:39:38 +03:00
};
}