Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / libraries / miniz / default.nix
blob8592dc5f122484aaf7ad4460c30527038136ab34
1 { lib, stdenv, fetchFromGitHub, cmake }:
3 stdenv.mkDerivation rec {
4   pname = "miniz";
5   version = "2.2.0";
7   src = fetchFromGitHub {
8     owner = "richgel999";
9     repo = pname;
10     rev = version;
11     sha256 = "sha256-7hc/yNJh4sD5zGQLeHjowbUtV/1mUDQre1tp9yKMSSY=";
12   };
14   nativeBuildInputs = [ cmake ];
16   postFixup = ''
17     substituteInPlace "$out"/share/pkgconfig/miniz.pc \
18       --replace '=''${prefix}//' '=/' \
19       --replace '=''${exec_prefix}//' '=/'
20   '';
22   meta = with lib; {
23     description = "Single C source file zlib-replacement library";
24     homepage = "https://github.com/richgel999/miniz";
25     license = licenses.mit;
26     maintainers = with maintainers; [ astro ];
27     platforms = platforms.unix;
28   };