14 lines
308 B
Nix
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;
|
|
}
|
|
|