summaryrefslogtreecommitdiff
path: root/accounts/gkleen@sif/xmobar/xmobar-yggdrasil.nix
blob: 852fb8e5ebdc8264e2443819c5876e5968121928 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ mkDerivation, base, hpack, lib, xmobar }:
mkDerivation {
  pname = "xmobar-yggdrasil";
  version = "0.0.0";
  src = ./.;
  isLibrary = false;
  isExecutable = true;
  libraryToolDepends = [ hpack ];
  executableHaskellDepends = [ base xmobar ];
  preConfigure = "hpack";
  license = "unknown";
  hydraPlatforms = lib.platforms.none;
}