guile-hall: init at 0.4.1

This commit is contained in:
Gabriel Arazas 2022-01-17 15:29:14 +08:00
parent 22d734bdc6
commit 1ae2f4e583
2 changed files with 24 additions and 0 deletions

View File

@ -11,6 +11,7 @@ with pkgs; {
gnome-shell-extension-fly-pie =
callPackage ./gnome-shell-extension-fly-pie.nix { };
guile-config = callPackage ./guile-config.nix { };
guile-hall = callPackage ./guile-hall.nix { };
junction = callPackage ./junction.nix { };
libcs50 = callPackage ./libcs50.nix { };
llama = callPackage ./llama.nix { };

23
pkgs/guile-hall.nix Normal file
View File

@ -0,0 +1,23 @@
{ stdenv, lib, guile_3_0, guile-config, fetchFromGitLab, autoreconfHook
, pkg-config, texinfo }:
stdenv.mkDerivation rec {
pname = "guile-hall";
version = "0.4.1";
src = fetchFromGitLab {
owner = "a-sassmannshausen";
repo = pname;
rev = version;
sha256 = "sha256-TUCN8kW44X6iGbSJURurcz/Tc2eCH1xgmXH1sMOMOXs=";
};
nativeBuildInputs = [ pkg-config autoreconfHook texinfo ];
propagatedBuildInputs = [ guile_3_0 guile-config ];
meta = with lib; {
description = "Command-line application for managing Guile projects";
homepage = "https://gitlab.com/a-sassmannshausen/guile-hall";
license = licenses.gpl3;
};
}