1
0
mirror of https://github.com/kmein/niveum synced 2026-03-16 18:21:07 +01:00

quote-db: import from derivation; + k(rebs)paste

This commit is contained in:
Kierán Meinhardt
2019-06-02 01:51:30 +02:00
parent eaf86019c0
commit e705d10feb
2 changed files with 25 additions and 39 deletions

View File

@@ -1,26 +0,0 @@
{ mkDerivation, base, bytestring, cassava, hasmin, HaTeX, lucid
, megaparsec, optparse-applicative, prettyprinter, raw-strings-qq
, stdenv, text
, fetchFromGitHub
}:
mkDerivation {
pname = "quote-db";
version = "0.1.0.0";
src = fetchFromGitHub {
owner = "kmein";
repo = "quote-db";
rev = "2a9776293d306cf2777bfd63412d8e30082826d1";
sha256 = "18nmi6rds1dfwkrnvdbqzl261szg93b6rbx6in2zmpz8v6k6z5f9";
};
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;
}