Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 0ef2bffe5bef
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 13ff17bf7054
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Mar 26, 2019

  1. lispPackages.stumpwm: mimic Query-FS tricks for adding extra deps

    (cherry picked from commit 83cb84e)
    
    This is a no-op by default (intended for easier overriding) with low risk, and
    requested by a user for backporting.
    7c6f434c committed Mar 26, 2019
    Copy the full SHA
    13ff17b View commit details
Showing with 3 additions and 1 deletion.
  1. +3 −1 pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
4 changes: 3 additions & 1 deletion pkgs/development/lisp-modules/quicklisp-to-nix-overrides.nix
Original file line number Diff line number Diff line change
@@ -10,11 +10,13 @@ in
{
stumpwm = x:{
overrides = y: (x.overrides y) // {
linkedSystems = [];
preConfigure = ''
export configureFlags="$configureFlags --with-$NIX_LISP=common-lisp.sh";
'';
postInstall = ''
export NIX_LISP_PRELAUNCH_HOOK="nix_lisp_build_system stumpwm '(function stumpwm:stumpwm)'"
export NIX_LISP_PRELAUNCH_HOOK="nix_lisp_build_system stumpwm \
'(function stumpwm:stumpwm)' '$linkedSystems'"
"$out/bin/stumpwm-lisp-launcher.sh"
cp "$out/lib/common-lisp/stumpwm/stumpwm" "$out/bin"