stumpwm: migrate to by-name, switch from rev to tag (#518398)
This commit is contained in:
+14
-4
@@ -1,5 +1,5 @@
|
||||
{
|
||||
stdenv,
|
||||
stdenvNoCC,
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
autoreconfHook,
|
||||
@@ -7,20 +7,30 @@
|
||||
texinfo,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
let
|
||||
sbclWithPkgs = sbcl.withPackages (
|
||||
ps: with ps; [
|
||||
alexandria
|
||||
cl-ppcre
|
||||
clx
|
||||
fiasco
|
||||
]
|
||||
);
|
||||
in
|
||||
stdenvNoCC.mkDerivation (finalAttrs: {
|
||||
pname = "stumpwm";
|
||||
version = "24.11";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "stumpwm";
|
||||
repo = "stumpwm";
|
||||
rev = "${finalAttrs.version}";
|
||||
tag = "${finalAttrs.version}";
|
||||
hash = "sha256-Ba2HcAmNcZvnqU0jpLTxsBe8L+4aHbO/oM4Bp/IYEC0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
sbcl
|
||||
sbclWithPkgs
|
||||
texinfo
|
||||
];
|
||||
|
||||
@@ -9488,18 +9488,6 @@ with pkgs;
|
||||
|
||||
inherit (ocaml-ng.ocamlPackages) stog;
|
||||
|
||||
stumpwm = callPackage ../applications/window-managers/stumpwm {
|
||||
stdenv = stdenvNoCC;
|
||||
sbcl = sbcl.withPackages (
|
||||
ps: with ps; [
|
||||
alexandria
|
||||
cl-ppcre
|
||||
clx
|
||||
fiasco
|
||||
]
|
||||
);
|
||||
};
|
||||
|
||||
stumpwm-unwrapped = sbcl.pkgs.stumpwm;
|
||||
|
||||
sublime3Packages = recurseIntoAttrs (
|
||||
|
||||
Reference in New Issue
Block a user