-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtaskwarrior.nix
More file actions
21 lines (21 loc) · 801 Bytes
/
Copy pathtaskwarrior.nix
File metadata and controls
21 lines (21 loc) · 801 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ mkDerivation, aeson, base, bytestring, hspec, hspec-discover
, process, QuickCheck, quickcheck-instances, random, stdenv
, string-interpolate, text, time, unordered-containers, uuid
}:
mkDerivation {
pname = "taskwarrior";
version = "0.1.2.0";
sha256 = "972b4f4d070fd2174935a88a58f6d8d5b371fb1f1b6dbae921ccadd4c6a2b5ce";
libraryHaskellDepends = [
aeson base bytestring process random string-interpolate text time
unordered-containers uuid
];
testHaskellDepends = [
aeson base hspec QuickCheck quickcheck-instances text time
unordered-containers uuid
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/maralorn/haskell-taskwarrior";
description = "Types and aeson instances for taskwarrior tasks";
license = stdenv.lib.licenses.agpl3Plus;
}