summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/xmobar
diff options
context:
space:
mode:
authorGregor Kleen <gkleen@yggdrasil.li>2021-04-11 17:47:47 +0200
committerGregor Kleen <gkleen@yggdrasil.li>2021-04-11 17:47:47 +0200
commit9f76dbfdd2fae47cbf0e40fd2c2b01d7e94d01a9 (patch)
tree42473400a7dd9dcd8f93d15c5ca4fa94938a9612 /accounts/gkleen@sif/xmobar
parent57ac967d7b0b764d5fc0c1a4454cea4ed5978859 (diff)
downloadnixos-9f76dbfdd2fae47cbf0e40fd2c2b01d7e94d01a9.tar
nixos-9f76dbfdd2fae47cbf0e40fd2c2b01d7e94d01a9.tar.gz
nixos-9f76dbfdd2fae47cbf0e40fd2c2b01d7e94d01a9.tar.bz2
nixos-9f76dbfdd2fae47cbf0e40fd2c2b01d7e94d01a9.tar.xz
nixos-9f76dbfdd2fae47cbf0e40fd2c2b01d7e94d01a9.zip
bump
Diffstat (limited to 'accounts/gkleen@sif/xmobar')
-rw-r--r--accounts/gkleen@sif/xmobar/shell.nix4
-rw-r--r--accounts/gkleen@sif/xmobar/xmobar-yggdrasil.nix4
2 files changed, 4 insertions, 4 deletions
diff --git a/accounts/gkleen@sif/xmobar/shell.nix b/accounts/gkleen@sif/xmobar/shell.nix
index 18188e78..16beb322 100644
--- a/accounts/gkleen@sif/xmobar/shell.nix
+++ b/accounts/gkleen@sif/xmobar/shell.nix
@@ -24,5 +24,5 @@ let
24 name = "interactive-xmobar-environment"; 24 name = "interactive-xmobar-environment";
25 shellHook = ""; 25 shellHook = "";
26 }; 26 };
27in pkgs.stdenv.lib.overrideDerivation dummy override 27in pkgs.lib.overrideDerivation dummy override
28 #pkgs.stdenv.lib.overrideDerivation drv.env override 28 #pkgs.lib.overrideDerivation drv.env override
diff --git a/accounts/gkleen@sif/xmobar/xmobar-yggdrasil.nix b/accounts/gkleen@sif/xmobar/xmobar-yggdrasil.nix
index 1dfc619b..852fb8e5 100644
--- a/accounts/gkleen@sif/xmobar/xmobar-yggdrasil.nix
+++ b/accounts/gkleen@sif/xmobar/xmobar-yggdrasil.nix
@@ -1,4 +1,4 @@
1{ mkDerivation, base, hpack, stdenv, xmobar }: 1{ mkDerivation, base, hpack, lib, xmobar }:
2mkDerivation { 2mkDerivation {
3 pname = "xmobar-yggdrasil"; 3 pname = "xmobar-yggdrasil";
4 version = "0.0.0"; 4 version = "0.0.0";
@@ -9,5 +9,5 @@ mkDerivation {
9 executableHaskellDepends = [ base xmobar ]; 9 executableHaskellDepends = [ base xmobar ];
10 preConfigure = "hpack"; 10 preConfigure = "hpack";
11 license = "unknown"; 11 license = "unknown";
12 hydraPlatforms = stdenv.lib.platforms.none; 12 hydraPlatforms = lib.platforms.none;
13} 13}