knightos-kimg: 0.3.0 -> 0.4.0

This commit is contained in:
Ben Siraphob 2020-12-20 22:36:06 +07:00
parent aab02ab316
commit f03215596d
2 changed files with 6 additions and 9 deletions

View file

@ -1,27 +1,25 @@
{ stdenv, fetchFromGitHub, cmake, asciidoc, pkg-config, imagemagick }:
{ stdenv, fetchFromGitHub, cmake, asciidoc }:
stdenv.mkDerivation rec {
pname = "kimg";
version = "0.3.0";
version = "0.4.0";
src = fetchFromGitHub {
owner = "KnightOS";
repo = "kimg";
rev = version;
sha256 = "00gj420m0jvhgm8kkslw8r69nl7r73bxrh6gqs2mx16ymcpkanpk";
sha256 = "040782k3rh2a5mhbfgr9gnbfis0wgxvi27vhfn7l35vrr12sw1l3";
};
nativeBuildInputs = [ cmake asciidoc pkg-config ];
buildInputs = [ imagemagick ];
nativeBuildInputs = [ cmake asciidoc ];
hardeningDisable = [ "format" ];
meta = with stdenv.lib; {
homepage = "https://knightos.org/";
description = "Converts image formats supported by ImageMagick to the KnightOS image format";
description = "Converts image formats supported by stb_image to the KnightOS image format";
license = licenses.mit;
maintainers = with maintainers; [ siraben ];
platforms = platforms.unix;
platforms = platforms.all;
};
}

View file

@ -9737,7 +9737,6 @@ in
knightos-kimg = callPackage ../development/tools/knightos/kimg {
asciidoc = asciidoc-full;
imagemagick = imagemagick7Big;
};
knightos-kpack = callPackage ../development/tools/knightos/kpack { };