Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
at fix-function-merge 18 lines 468 B view raw
1{ lib, stdenv, fetchurl }: 2 3stdenv.mkDerivation rec { 4 pname = "libestr"; 5 version = "0.1.11"; 6 7 src = fetchurl { 8 url = "http://libestr.adiscon.com/files/download/${pname}-${version}.tar.gz"; 9 sha256 = "0910ifzcs8kpd3srrr4fvbacgh2zrc6yn7i4rwfj6jpzhlkjnqs6"; 10 }; 11 12 meta = with lib; { 13 homepage = "https://libestr.adiscon.com/"; 14 description = "Some essentials for string handling"; 15 license = licenses.lgpl21; 16 platforms = platforms.all; 17 }; 18}