Skip to content

Commit

Permalink
cask: fix evaluation error
Browse files Browse the repository at this point in the history
this was due to an override `emacsPackages = emacsPackagesNg` on my
system.

5bede1a
  • Loading branch information
bendlas committed Feb 16, 2018
1 parent 8ac63bd commit 588fe10
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions pkgs/development/tools/build-managers/cask/default.nix
@@ -1,8 +1,8 @@
{ emacsPackages, writeScriptBin }:
{ emacsPackagesNg, writeScriptBin }:
let

emacs = emacsPackages.emacsWithPackages (epkgs: [ epkgs.cask-package-toolset ]);
cpt = emacsPackages.cask-package-toolset;
emacs = emacsPackagesNg.emacsWithPackages (epkgs: [ epkgs.cask-package-toolset ]);
cpt = emacsPackagesNg.cask-package-toolset;

in writeScriptBin "cask" ''
#!/bin/sh
Expand Down

0 comments on commit 588fe10

Please sign in to comment.