summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/citeproc-hs/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/development/libraries/haskell/citeproc-hs/default.nix')
-rw-r--r--pkgs/development/libraries/haskell/citeproc-hs/default.nix9
1 files changed, 7 insertions, 2 deletions
diff --git a/pkgs/development/libraries/haskell/citeproc-hs/default.nix b/pkgs/development/libraries/haskell/citeproc-hs/default.nix
index 5773d6a7038eb..b09409d28df1c 100644
--- a/pkgs/development/libraries/haskell/citeproc-hs/default.nix
+++ b/pkgs/development/libraries/haskell/citeproc-hs/default.nix
@@ -1,4 +1,4 @@
-{ cabal, HTTP, hsBibutils, json, mtl, network, pandocTypes, parsec
+{ cabal, hsBibutils, HTTP, json, mtl, network, pandocTypes, parsec
 , syb, time, utf8String, xml
 }:
 
@@ -7,12 +7,17 @@ cabal.mkDerivation (self: {
   version = "0.3.3";
   sha256 = "0yhzqxrr7jn1h0r2vy1jmlrf0z64qcr2fl37i04rpiwzb3nc16r4";
   buildDepends = [
-    HTTP hsBibutils json mtl network pandocTypes parsec syb time
+    hsBibutils HTTP json mtl network pandocTypes parsec syb time
     utf8String xml
   ];
   meta = {
     homepage = "http://gorgias.mine.nu/repos/citeproc-hs/";
     description = "A Citation Style Language implementation in Haskell";
     license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [
+      self.stdenv.lib.maintainers.andres
+      self.stdenv.lib.maintainers.simons
+    ];
   };
 })