b5c1deca8a
He prefers to contribute to his own nixpkgs fork triton. Since he is still marked as maintainer in many packages this leaves the wrong impression he still maintains those.
18 lines
439 B
Nix
18 lines
439 B
Nix
{ stdenv, fetchurl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libestr-0.1.11";
|
|
|
|
src = fetchurl {
|
|
url = "http://libestr.adiscon.com/files/download/${name}.tar.gz";
|
|
sha256 = "0910ifzcs8kpd3srrr4fvbacgh2zrc6yn7i4rwfj6jpzhlkjnqs6";
|
|
};
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = http://libestr.adiscon.com/;
|
|
description = "Some essentials for string handling";
|
|
license = licenses.lgpl21;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|