nixpkgs/pkgs/development/libraries/libestr/default.nix
Matthew Bauer 290a5d916e treewide: update homepages to https where available
Based on "problems" from repology:

https://repology.org/repository/nix_unstable/problems

Mostly simple changes to reflect redirects.
2019-04-15 10:10:05 -04:00

18 lines
440 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 = https://libestr.adiscon.com/;
description = "Some essentials for string handling";
license = licenses.lgpl21;
platforms = platforms.all;
};
}