nixpkgs/pkgs/development/libraries/libestr/default.nix

19 lines
492 B
Nix
Raw Normal View History

2013-03-14 14:07:56 +01:00
{ stdenv, fetchurl }:
2015-03-11 21:13:33 +01:00
stdenv.mkDerivation rec {
name = "libestr-0.1.11";
2015-03-11 21:13:33 +01:00
2013-03-14 14:07:56 +01:00
src = fetchurl {
2015-03-11 21:13:33 +01:00
url = "http://libestr.adiscon.com/files/download/${name}.tar.gz";
sha256 = "0910ifzcs8kpd3srrr4fvbacgh2zrc6yn7i4rwfj6jpzhlkjnqs6";
2015-03-11 21:13:33 +01:00
};
meta = with stdenv.lib; {
homepage = http://libestr.adiscon.com/;
description = "Some essentials for string handling";
2015-03-11 21:13:33 +01:00
license = licenses.lgpl21;
platforms = platforms.all;
maintainers = with maintainers; [ wkennington ];
2013-03-14 14:07:56 +01:00
};
}