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

19 lines
512 B
Nix
Raw Normal View History

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