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

19 lines
492 B
Nix
Raw Normal View History

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