My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
nomicon/pkgs/development/libraries/getdata/default.nix

18 lines
511 B

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "getdata-${version}";
version = "0.9.4";
src = fetchurl {
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/;
};
}