libspng: init at 0.7.0-rc3
This commit is contained in:
parent
8882ec6ff9
commit
7f08484820
2 changed files with 30 additions and 0 deletions
28
pkgs/development/libraries/libspng/default.nix
Normal file
28
pkgs/development/libraries/libspng/default.nix
Normal file
|
@ -0,0 +1,28 @@
|
|||
{ lib, fetchFromGitHub, stdenv, zlib, ninja, meson, pkg-config }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libspng";
|
||||
version = "0.7.0-rc3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "randy408";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "0n91mr06sr34cqq91738251iaw21h5c4jgjpn0kqfx69ywxcl9fj";
|
||||
};
|
||||
|
||||
mesonBuildType = "release";
|
||||
|
||||
outputs = [ "out" "dev" ];
|
||||
outputBin = "dev";
|
||||
|
||||
buildInputs = [ pkg-config zlib ];
|
||||
nativeBuildInputs = [ ninja meson ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple, modern libpng alternative";
|
||||
homepage = "https://github.com/randy408/libspng";
|
||||
license = with licenses; [ bsd2 ];
|
||||
maintainers = with maintainers; [ humancalico ];
|
||||
};
|
||||
}
|
|
@ -17424,6 +17424,8 @@ with pkgs;
|
|||
|
||||
libspiro = callPackage ../development/libraries/libspiro {};
|
||||
|
||||
libspng = callPackage ../development/libraries/libspng { };
|
||||
|
||||
libssh = callPackage ../development/libraries/libssh { };
|
||||
|
||||
libssh2 = callPackage ../development/libraries/libssh2 { };
|
||||
|
|
Loading…
Reference in a new issue