mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 08:23:09 +00:00
3f8c96c496
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/libestr/versions
19 lines
492 B
Nix
19 lines
492 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;
|
|
maintainers = with maintainers; [ wkennington ];
|
|
};
|
|
}
|