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