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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

19 lines
468 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl }:
2015-03-11 20:13:33 +00:00
stdenv.mkDerivation rec {
2021-06-22 13:21:29 +00:00
pname = "libestr";
version = "0.1.11";
2015-03-11 20:13:33 +00:00
2013-03-14 13:07:56 +00:00
src = fetchurl {
2021-06-22 13:21:29 +00:00
url = "http://libestr.adiscon.com/files/download/${pname}-${version}.tar.gz";
sha256 = "0910ifzcs8kpd3srrr4fvbacgh2zrc6yn7i4rwfj6jpzhlkjnqs6";
2015-03-11 20:13:33 +00:00
};
meta = with 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
};
}