Merge branch 'master.upstream' into staging.upstream
This commit is contained in:
@@ -0,0 +1,15 @@
|
||||
{ stdenv, ghcWithPackages, xmessage, makeWrapper, packages ? (x: []) }:
|
||||
|
||||
let
|
||||
taffybarEnv = ghcWithPackages (self: [ self.taffybar ] ++ packages self);
|
||||
in stdenv.mkDerivation {
|
||||
name = "taffybar-with-packages";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
buildCommand = ''
|
||||
mkdir -p $out/bin
|
||||
makeWrapper ${taffybarEnv}/bin/taffybar $out/bin/taffybar \
|
||||
--set NIX_GHC "${taffybarEnv}/bin/ghc"
|
||||
'';
|
||||
}
|
||||
Reference in New Issue
Block a user