mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-01-31 10:58:02 +00:00
guile-hall: init at 0.4.1
This commit is contained in:
parent
22d734bdc6
commit
1ae2f4e583
@ -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
23
pkgs/guile-hall.nix
Normal 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;
|
||||
};
|
||||
}
|
Loading…
Reference in New Issue
Block a user