My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/libraries/libestr/default.nix

18 lines
468 B

{ lib, stdenv, fetchurl }:
stdenv.mkDerivation rec {
pname = "libestr";
version = "0.1.11";
src = fetchurl {
url = "http://libestr.adiscon.com/files/download/${pname}-${version}.tar.gz";
sha256 = "0910ifzcs8kpd3srrr4fvbacgh2zrc6yn7i4rwfj6jpzhlkjnqs6";
};
meta = with lib; {
homepage = "https://libestr.adiscon.com/";
description = "Some essentials for string handling";
license = licenses.lgpl21;
platforms = platforms.all;
};
}