nixpkgs/pkgs/development/libraries/libspng/default.nix

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

58 lines
993 B
Nix
Raw Normal View History

2021-09-07 12:41:39 +00:00
{ lib
, fetchFromGitHub
, stdenv
, zlib
, ninja
, meson
, pkg-config
, cmake
, libpng
}:
2021-08-31 08:52:01 +00:00
stdenv.mkDerivation rec {
pname = "libspng";
2022-02-12 15:23:26 +00:00
version = "0.7.2";
2021-08-31 08:52:01 +00:00
src = fetchFromGitHub {
owner = "randy408";
repo = pname;
rev = "v${version}";
2022-02-12 15:23:26 +00:00
sha256 = "sha256-GgrTWC/cesDlEh2J6StCyKiLRk62xfy2+E4lnmJMLGs=";
2021-08-31 08:52:01 +00:00
};
2021-09-07 12:41:39 +00:00
doCheck = true;
2021-08-31 08:52:01 +00:00
mesonBuildType = "release";
2021-09-07 12:41:39 +00:00
mesonFlags = [
# this is required to enable testing
# https://github.com/randy408/libspng/blob/bc383951e9a6e04dbc0766f6737e873e0eedb40b/tests/README.md#testing
"-Ddev_build=true"
];
2021-08-31 08:52:01 +00:00
outputs = [ "out" "dev" ];
2021-09-07 12:41:39 +00:00
checkInputs = [
cmake
libpng
];
buildInputs = [
pkg-config
zlib
];
nativeBuildInputs = [
ninja
meson
];
2021-08-31 08:52:01 +00:00
meta = with lib; {
description = "Simple, modern libpng alternative";
2022-06-04 04:20:00 +00:00
homepage = "https://libspng.org/";
2021-08-31 08:52:01 +00:00
license = with licenses; [ bsd2 ];
maintainers = with maintainers; [ humancalico ];
2022-06-04 04:20:00 +00:00
platforms = platforms.all;
2021-08-31 08:52:01 +00:00
};
}