29 lines
916 B
Nix
29 lines
916 B
Nix
{ cabal, aeson, binary, bytestringProgress, deepseq, filepath
|
|
, HUnit, libXScrnSaver, parsec, pcreLight, processExtras, strict
|
|
, tasty, tastyGolden, tastyHunit, terminalProgressBar, time
|
|
, transformers, utf8String, X11
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "arbtt";
|
|
version = "0.8";
|
|
sha256 = "0anjcg8ikd3jxc5rb3k215wj7ar4kg2plv8sdr8hv64758xkc5q9";
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
buildDepends = [
|
|
aeson binary bytestringProgress deepseq filepath parsec pcreLight
|
|
strict terminalProgressBar time transformers utf8String X11
|
|
];
|
|
testDepends = [
|
|
binary deepseq HUnit parsec pcreLight processExtras tasty
|
|
tastyGolden tastyHunit time transformers utf8String
|
|
];
|
|
extraLibraries = [ libXScrnSaver ];
|
|
meta = {
|
|
homepage = "http://arbtt.nomeata.de/";
|
|
description = "Automatic Rule-Based Time Tracker";
|
|
license = "GPL";
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|