nixpkgs/pkgs/development/tools/misc/pkgconf/default.nix

20 lines
543 B
Nix
Raw Normal View History

2018-11-20 08:52:13 +00:00
{ stdenv, fetchurl }:
2018-11-19 12:31:56 +00:00
stdenv.mkDerivation rec {
pname = "pkgconf";
version = "1.6.3";
2018-11-19 12:31:56 +00:00
2018-11-20 08:52:13 +00:00
src = fetchurl {
url = "https://distfiles.dereferenced.org/${pname}/${pname}-${version}.tar.xz";
sha256 = "04525vv0y849vvc2pi60g5wd9fjp1wbhra2lniifi82y1ldv7w31";
2018-11-19 12:31:56 +00:00
};
2018-11-19 12:56:51 +00:00
meta = with stdenv.lib; {
2018-11-19 12:54:25 +00:00
description = "Package compiler and linker metadata toolkit";
homepage = "https://git.dereferenced.org/pkgconf/pkgconf";
2018-11-19 12:54:25 +00:00
platforms = platforms.all;
license = licenses.isc;
2018-11-19 12:56:51 +00:00
maintainers = with maintainers; [ zaninime ];
2018-11-19 12:54:25 +00:00
};
2018-11-19 12:31:56 +00:00
}