2014-04-28 19:16:59 +02:00
|
|
|
{ cabal, aeson, binary, bytestringProgress, deepseq, filepath
|
|
|
|
, HUnit, libXScrnSaver, parsec, pcreLight, processExtras, strict
|
|
|
|
, tasty, tastyGolden, tastyHunit, terminalProgressBar, time
|
|
|
|
, transformers, utf8String, X11
|
2013-04-18 18:23:48 +02:00
|
|
|
}:
|
|
|
|
|
|
|
|
cabal.mkDerivation (self: {
|
|
|
|
pname = "arbtt";
|
2014-07-03 16:59:26 +02:00
|
|
|
version = "0.8.1";
|
|
|
|
sha256 = "1qzmqjm8pfj59h0hrm28pp6qhzz2am5xq81mirnnchsgg52wrfn0";
|
2013-04-18 18:23:48 +02:00
|
|
|
isLibrary = false;
|
|
|
|
isExecutable = true;
|
|
|
|
buildDepends = [
|
2014-04-28 19:16:59 +02:00
|
|
|
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
|
2013-04-18 18:23:48 +02:00
|
|
|
];
|
|
|
|
extraLibraries = [ libXScrnSaver ];
|
2014-05-23 17:58:05 +02:00
|
|
|
jailbreak = true;
|
2013-04-18 18:23:48 +02:00
|
|
|
meta = {
|
2014-04-28 19:16:59 +02:00
|
|
|
homepage = "http://arbtt.nomeata.de/";
|
2013-04-18 18:23:48 +02:00
|
|
|
description = "Automatic Rule-Based Time Tracker";
|
|
|
|
license = "GPL";
|
|
|
|
platforms = self.ghc.meta.platforms;
|
|
|
|
};
|
|
|
|
})
|