Compare commits
2 Commits
70f3992691
...
37e88a8d8e
Author | SHA1 | Date | |
---|---|---|---|
37e88a8d8e | |||
14861ec3ed |
|
@ -29,7 +29,7 @@ library
|
||||||
, lens
|
, lens
|
||||||
, bytestring
|
, bytestring
|
||||||
, text
|
, text
|
||||||
, brick
|
, brick < 1
|
||||||
, HTTP
|
, HTTP
|
||||||
, vty
|
, vty
|
||||||
, transformers
|
, transformers
|
||||||
|
|
20
kino.nix
Normal file
20
kino.nix
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
{ mkDerivation, aeson, base, brick_0_70_1, bytestring, Clipboard, HTTP
|
||||||
|
, lens, lens-aeson, lib, microlens, microlens-th, text
|
||||||
|
, transformers, vty, wreq
|
||||||
|
}:
|
||||||
|
mkDerivation {
|
||||||
|
pname = "kino";
|
||||||
|
version = "0.1.0.0";
|
||||||
|
src = ./.;
|
||||||
|
isLibrary = true;
|
||||||
|
isExecutable = true;
|
||||||
|
libraryHaskellDepends = [
|
||||||
|
aeson base brick_0_70_1 bytestring Clipboard HTTP lens lens-aeson
|
||||||
|
microlens microlens-th text transformers vty wreq
|
||||||
|
];
|
||||||
|
executableHaskellDepends = [ base ];
|
||||||
|
testHaskellDepends = [ base ];
|
||||||
|
description = "A terminal interface to the yts.mx api";
|
||||||
|
license = lib.licenses.isc;
|
||||||
|
mainProgram = "kino";
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user