summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/nc-indicators/default.nix
blob: a33cfbdf159ac708be75cc0d92fd036528f6e24c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ cabal, attoparsec, gtk, hflags, lens, pipes, stm }:

cabal.mkDerivation (self: {
  pname = "nc-indicators";
  version = "0.1";
  sha256 = "19amwfcbwfxcj0gr7w0vgxl427l43q3l2s3n3zsxhqwkfblxmfy5";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [ attoparsec gtk hflags lens pipes stm ];
  meta = {
    homepage = "https://github.com/nilcons/nc-indicators/issues";
    description = "CPU load and memory usage indicators for i3bar";
    license = self.stdenv.lib.licenses.asl20;
    platforms = self.ghc.meta.platforms;
  };
})