Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
1{ lib, stdenv 2, fetchFromGitHub 3, autoreconfHook 4}: 5 6stdenv.mkDerivation rec { 7 pname = "libuninameslist"; 8 version = "20221022"; 9 10 src = fetchFromGitHub { 11 owner = "fontforge"; 12 repo = pname; 13 rev = version; 14 sha256 = "sha256-YLlSe2++DpcptuAxLduTYAY2m9D8JSGDcvzijpAv1rU="; 15 }; 16 17 nativeBuildInputs = [ 18 autoreconfHook 19 ]; 20 21 meta = with lib; { 22 homepage = "https://github.com/fontforge/libuninameslist/"; 23 description = "A Library of Unicode names and annotation data"; 24 license = licenses.bsd3; 25 maintainers = with maintainers; [ erictapen ]; 26 platforms = platforms.all; 27 }; 28}