Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / zimg / default.nix
blobdbd6c9582dd71d35f75ce34a10e29bf24f9191ed
1 { lib, stdenv, fetchFromGitHub, autoreconfHook }:
3 stdenv.mkDerivation rec {
4   pname = "zimg";
5   version = "3.0.5";
7   src = fetchFromGitHub {
8     owner  = "sekrit-twc";
9     repo   = "zimg";
10     rev    = "release-${version}";
11     sha256 = "sha256-DCSqHCnOyIvKtIAfprb8tgtzLn67Ix6BWyeIliu0HO4=";
12   };
14   outputs = [ "out" "dev" "doc" ];
16   nativeBuildInputs = [ autoreconfHook ];
18   enableParallelBuilding = true;
20   meta = with lib; {
21     description = "Scaling, colorspace conversion and dithering library";
22     homepage    = "https://github.com/sekrit-twc/zimg";
23     license     = licenses.wtfpl;
24     platforms   = with platforms; unix ++ windows;
25     maintainers = with maintainers; [ rnhmjoj ];
26   };