summary refs log tree commit diff
path: root/pkgs/development/libraries/getdata/default.nix
blob: e3dfc9fe0a90c9ab68f42714cea491b83f75334d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
  name = "getdata-0.8.9";
  src = fetchurl {
    url = "mirror://sourceforge/getdata/${name}.tar.bz2";
    sha256 = "1cgwrflpp9ia2cwnhmwp45nmsg15ymjh03pysrfigyfmag94ac51";
  };

  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/;
  };
}