Files
nixos-config/home/programs/xmonad/src/xmobar/default.nix
2025-02-16 08:23:36 +01:00

14 lines
308 B
Nix

{ pkgs ? import <nixpkgs> { } }:
with pkgs;
haskellPackages.mkDerivation {
pname = "xmobar";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = with haskellPackages; [ base xmobar ];
license = "unknown";
hydraPlatforms = lib.platforms.none;
}