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

18 lines
440 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.11";
2015-03-11 20:13:33 +00:00
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 = "0910ifzcs8kpd3srrr4fvbacgh2zrc6yn7i4rwfj6jpzhlkjnqs6";
2015-03-11 20:13:33 +00:00
};
meta = with stdenv.lib; {
homepage = https://libestr.adiscon.com/;
description = "Some essentials for string handling";
2015-03-11 20:13:33 +00:00
license = licenses.lgpl21;
platforms = platforms.all;
2013-03-14 13:07:56 +00:00
};
}