about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/libraries/getdata/default.nix
blob: 22e7d216e6cdb6082aad23526bab76a9e6015e3c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ stdenv, fetchurl, libtool }:
stdenv.mkDerivation rec {
  name = "getdata-${version}";
  version = "0.10.0";
  src = fetchurl {
    url = "mirror://sourceforge/getdata/${name}.tar.xz";
    sha256 = "18xbb32vygav9x6yz0gdklif4chjskmkgp06rwnjdf9myhia0iym";
  };

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