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

18 lines
511 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2017-01-14 15:49:57 +00:00
name = "getdata-${version}";
version = "0.9.4";
src = fetchurl {
2017-01-14 15:49:57 +00:00
url = "mirror://sourceforge/getdata/${name}.tar.xz";
sha256 = "0kikla8sxv6f1rlh77m86dajcsa7b1029zb8iigrmksic27mj9ja";
};
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/;
};
}