getdata: 0.9.4 -> 0.10.0

This commit is contained in:
Vincent Laporte 2017-07-15 11:39:56 +02:00
parent 9480628286
commit 0134709369

View File

@ -1,12 +1,14 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, libtool }:
stdenv.mkDerivation rec {
name = "getdata-${version}";
version = "0.9.4";
version = "0.10.0";
src = fetchurl {
url = "mirror://sourceforge/getdata/${name}.tar.xz";
sha256 = "0kikla8sxv6f1rlh77m86dajcsa7b1029zb8iigrmksic27mj9ja";
sha256 = "18xbb32vygav9x6yz0gdklif4chjskmkgp06rwnjdf9myhia0iym";
};
buildInputs = [ libtool ];
meta = with stdenv.lib; {
description = "Reference implementation of the Dirfile Standards";
license = licenses.lgpl21Plus;