This commit is contained in:
2024-03-05 15:02:42 +01:00
parent 4a37c5afd7
commit 0fb5a5ee0b
5 changed files with 152 additions and 3 deletions

View File

@@ -0,0 +1,13 @@
{ pkgs ? import <nixpkgs> { } }:
with pkgs;
haskellPackages.mkDerivation {
pname = "xmobar";
version = "0.1.0.0";
src = /etc/nixos/home/programs/xmonad/src/xmobar/.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = with haskellPackages; [ base xmobar ];
license = "unknown";
hydraPlatforms = lib.platforms.none;
}