guile-config: remove package

Already available on nixpkgs.
This commit is contained in:
Gabriel Arazas 2023-07-17 10:49:40 +08:00
parent c83ba2c5cd
commit 89488b86f6
No known key found for this signature in database
GPG Key ID: ADE0C41DAB221FCC
2 changed files with 0 additions and 36 deletions

View File

@ -15,7 +15,6 @@ let
distant = callPackage ./distant.nix { };
gnome-search-provider-recoll =
callPackage ./gnome-search-provider-recoll.nix { };
guile-config = callPackage ./guile-config.nix { };
hush-shell = callPackage ./hush-shell.nix { };
ictree = callPackage ./ictree.nix { };
kiwmi = callPackage ./kiwmi { };

View File

@ -1,35 +0,0 @@
{ stdenv
, lib
, guile_3_0
, fetchFromGitLab
, autoreconfHook
, pkg-config
, texinfo
}:
stdenv.mkDerivation rec {
pname = "guile-config";
version = "0.5.0";
src = fetchFromGitLab {
owner = "a-sassmannshausen";
repo = pname;
rev = version;
sha256 = "sha256-8Ma2pzqR8il+8H6WVbYLpKBk2rh3aKBr1mvvzdpCNPc=";
};
nativeBuildInputs = [ pkg-config autoreconfHook texinfo ];
propagatedBuildInputs = [ guile_3_0 ];
postConfigure = ''
sed -i '/moddir\s*=/s%=.*%=''${out}/share/guile/site%' Makefile
sed -i '/godir\s*=/s%=.*%=''${out}/share/guile/ccache%' Makefile
sed -i '/ccachedir\s*=/s%=.*%=''${out}/share/guile/ccache%' Makefile
'';
meta = with lib; {
description = "Library for a declarative approach for configuration";
homepage = "https://gitlab.com/a-sassmannshausen/guile-config";
license = licenses.gpl3Only;
};
}