summary refs log tree commit diff
path: root/pkgs/development/libraries/getdata/default.nix
blob: 5dbf22df552de58ef04ed44e15aa40592b033e5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ 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/;
  };
}