mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Add haskell package 'taffybar'
This commit is contained in:
parent
b95b70c7a6
commit
3f30c971c8
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/misc/taffybar/default.nix
Normal file
25
pkgs/applications/misc/taffybar/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ cabal, cairo, dbus, dyre, filepath, gtk, gtkTraymanager
|
||||
, HStringTemplate, HTTP, mtl, network, parsec, split, stm, text
|
||||
, time, transformers, utf8String, X11, xdgBasedir, xmonad
|
||||
, xmonadContrib
|
||||
}:
|
||||
|
||||
cabal.mkDerivation (self: {
|
||||
pname = "taffybar";
|
||||
version = "0.3.0";
|
||||
sha256 = "02vpfbwfprca997ykk746ih7id0ls3i5pnb33gj3nrfgc59fkz7v";
|
||||
isLibrary = true;
|
||||
isExecutable = true;
|
||||
buildDepends = [
|
||||
cairo dbus dyre filepath gtk gtkTraymanager HStringTemplate HTTP
|
||||
mtl network parsec split stm text time transformers utf8String X11
|
||||
xdgBasedir xmonad xmonadContrib
|
||||
];
|
||||
pkgconfigDepends = [ gtk ];
|
||||
meta = {
|
||||
homepage = "http://github.com/travitch/taffybar";
|
||||
description = "A desktop bar similar to xmobar, but with more GUI";
|
||||
license = self.stdenv.lib.licenses.bsd3;
|
||||
platforms = self.ghc.meta.platforms;
|
||||
};
|
||||
})
|
|
@ -2769,6 +2769,8 @@ let result = let callPackage = x : y : modifyPrio (newScope result.finalReturn x
|
|||
QuickCheck = self.QuickCheck2;
|
||||
};
|
||||
|
||||
taffybar = callPackage ../applications/misc/taffybar {};
|
||||
|
||||
yi = callPackage ../applications/editors/yi/yi.nix {};
|
||||
|
||||
yiContrib = callPackage ../applications/editors/yi/yi-contrib.nix {};
|
||||
|
|
Loading…
Reference in a new issue