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

26 lines
643 B
Nix
Raw Normal View History

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