summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/misc/nc-indicators/default.nix
blob: e3a1708326cd6af491b47467cf5ffdcd77a695b5 (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.2";
  sha256 = "0z3h0d3cl0xapysq5sh1rnbp8fg8adlq0x3i4ql9xin9in29q27q";
  isLibrary = false;
  isExecutable = true;
  buildDepends = [ attoparsec gtk hflags lens pipes stm ];
  meta = {
    homepage = "https://github.com/nilcons/nc-indicators";
    description = "CPU load and memory usage indicators for i3bar";
    license = self.stdenv.lib.licenses.asl20;
    platforms = self.ghc.meta.platforms;
  };
})