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

26 lines
674 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, autoreconfHook }:
2016-08-27 03:28:25 +00:00
2019-06-27 21:23:56 +00:00
stdenv.mkDerivation rec {
pname = "zimg";
2021-07-08 19:57:30 +00:00
version = "3.0.2";
2016-08-27 03:28:25 +00:00
src = fetchFromGitHub {
2017-02-04 18:32:13 +00:00
owner = "sekrit-twc";
repo = "zimg";
2017-11-05 14:22:24 +00:00
rev = "release-${version}";
2021-07-08 19:57:30 +00:00
sha256 = "19qim6vyfas0m09piiw0pw7i0xjzi8vs6bx716gz472nflsg1604";
2016-08-27 03:28:25 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
2016-08-27 03:28:25 +00:00
2019-06-27 21:23:56 +00:00
enableParallelBuilding = true;
meta = with lib; {
2016-08-27 03:28:25 +00:00
description = "Scaling, colorspace conversion and dithering library";
2020-03-04 14:06:34 +00:00
homepage = "https://github.com/sekrit-twc/zimg";
2017-02-04 18:32:13 +00:00
license = licenses.wtfpl;
2017-04-21 04:44:38 +00:00
platforms = platforms.linux ++ platforms.darwin;
2016-08-27 03:28:25 +00:00
maintainers = with maintainers; [ rnhmjoj ];
};
}