nixpkgs/pkgs/development/libraries/getdata/default.nix

20 lines
555 B
Nix
Raw Normal View History

2017-07-15 09:39:56 +00:00
{ stdenv, fetchurl, libtool }:
stdenv.mkDerivation rec {
pname = "getdata";
2017-07-15 09:39:56 +00:00
version = "0.10.0";
src = fetchurl {
url = "mirror://sourceforge/getdata/${pname}-${version}.tar.xz";
2017-07-15 09:39:56 +00:00
sha256 = "18xbb32vygav9x6yz0gdklif4chjskmkgp06rwnjdf9myhia0iym";
};
2017-07-15 09:39:56 +00:00
buildInputs = [ libtool ];
meta = with stdenv.lib; {
description = "Reference implementation of the Dirfile Standards";
license = licenses.lgpl21Plus;
platforms = platforms.all;
maintainers = [ maintainers.vbgl ];
homepage = "http://getdata.sourceforge.net/";
};
}