guile-curl: init at 0.9 (#388325)

authored by Gaétan Lepage and committed by GitHub c1a4de71 53697d58

+45
+45
pkgs/by-name/gu/guile-curl/package.nix
··· 1 + { 2 + lib, 3 + stdenv, 4 + fetchFromGitHub, 5 + autoreconfHook, 6 + guile, 7 + pkg-config, 8 + texinfo, 9 + curl, 10 + }: 11 + 12 + stdenv.mkDerivation (finalAttrs: { 13 + pname = "guile-curl"; 14 + version = "0.9"; 15 + 16 + src = fetchFromGitHub { 17 + owner = "spk121"; 18 + repo = "guile-curl"; 19 + tag = "v${finalAttrs.version}"; 20 + hash = "sha256-nVA0cl4Oog3G+Ww0n0QMxJ66iqTn4VxrV+sqd6ACWl4="; 21 + }; 22 + 23 + strictDeps = true; 24 + 25 + nativeBuildInputs = [ 26 + autoreconfHook 27 + guile 28 + pkg-config 29 + texinfo 30 + ]; 31 + 32 + buildInputs = [ 33 + guile 34 + curl 35 + ]; 36 + 37 + meta = { 38 + description = "Bindings to cURL for GNU Guile"; 39 + homepage = "https://github.com/spk121/guile-curl"; 40 + changelog = "https://github.com/spk121/guile-curl/releases/tag/v${finalAttrs.version}/CHANGELOG.md"; 41 + license = lib.licenses.gpl3Plus; 42 + maintainers = with lib.maintainers; [ ethancedwards8 ]; 43 + platforms = guile.meta.platforms; 44 + }; 45 + })