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

20 lines
543 B
Nix
Raw Normal View History

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