From 7c17c9fc70d88cdc1a0fa1a8dba9dc7f4d014e44 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Kier=C3=A1n=20Meinhardt?= Date: Wed, 15 May 2019 20:26:34 +0200 Subject: [PATCH] + quote-db --- packages/quote-db.nix | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 packages/quote-db.nix diff --git a/packages/quote-db.nix b/packages/quote-db.nix new file mode 100644 index 0000000..479e7fb --- /dev/null +++ b/packages/quote-db.nix @@ -0,0 +1,20 @@ +{ mkDerivation, base, bytestring, cassava, hasmin, HaTeX, lucid +, megaparsec, optparse-applicative, prettyprinter, raw-strings-qq +, stdenv, text +}: +mkDerivation { + pname = "quote-db"; + version = "0.1.0.0"; + src = ./.; + isLibrary = true; + isExecutable = true; + libraryHaskellDepends = [ + base bytestring cassava hasmin HaTeX lucid megaparsec prettyprinter + raw-strings-qq text + ]; + executableHaskellDepends = [ base optparse-applicative text ]; + testHaskellDepends = [ base ]; + homepage = "https://github.com/kmein/quote-db#readme"; + description = "A tool for managing a database of literature quotes"; + license = stdenv.lib.licenses.mit; +}