1
0
Fork 0
mirror of https://github.com/NixOS/nixpkgs synced 2024-10-19 03:47:13 -04:00
nixpkgs/pkgs/development/libraries/getdata/default.nix

20 lines
551 B
Nix
Raw Normal View History

2017-07-15 05:39:56 -04:00
{ stdenv, fetchurl, libtool }:
stdenv.mkDerivation rec {
2017-01-14 10:49:57 -05:00
name = "getdata-${version}";
2017-07-15 05:39:56 -04:00
version = "0.10.0";
src = fetchurl {
2017-01-14 10:49:57 -05:00
url = "mirror://sourceforge/getdata/${name}.tar.xz";
2017-07-15 05:39:56 -04:00
sha256 = "18xbb32vygav9x6yz0gdklif4chjskmkgp06rwnjdf9myhia0iym";
};
2017-07-15 05:39:56 -04: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/;
};
}