-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathdefault.nix
More file actions
20 lines (20 loc) · 763 Bytes
/
default.nix
File metadata and controls
20 lines (20 loc) · 763 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ mkDerivation, aeson, attoparsec, base, bytestring, containers
, free, hashable, HUnit, neat-interpolation, old-locale, semigroups
, stdenv, tasty, tasty-hunit, text, thyme, unordered-containers
}:
mkDerivation {
pname = "orgmode-parse";
version = "0.2.2";
src = ./.;
libraryHaskellDepends = [
aeson attoparsec base bytestring containers free hashable
old-locale semigroups text thyme unordered-containers
];
testHaskellDepends = [
aeson attoparsec base bytestring containers free hashable HUnit
neat-interpolation old-locale semigroups tasty tasty-hunit text
thyme unordered-containers
];
description = "A collection of Attoparsec combinators for parsing org-mode flavored documents";
license = stdenv.lib.licenses.bsd3;
}