initial commit
This commit is contained in:
commit
70d3db13c7
17 changed files with 1109 additions and 0 deletions
30
todo.nix
Normal file
30
todo.nix
Normal file
|
|
@ -0,0 +1,30 @@
|
|||
{
|
||||
mkDerivation,
|
||||
base,
|
||||
bytestring,
|
||||
directory,
|
||||
http-types,
|
||||
lib,
|
||||
text,
|
||||
wai,
|
||||
warp,
|
||||
}:
|
||||
mkDerivation {
|
||||
pname = "todo";
|
||||
version = "0.1.0.0";
|
||||
src = ./.;
|
||||
isLibrary = false;
|
||||
isExecutable = true;
|
||||
executableHaskellDepends = [
|
||||
base
|
||||
bytestring
|
||||
directory
|
||||
http-types
|
||||
text
|
||||
wai
|
||||
warp
|
||||
];
|
||||
description = "simple todo list, that will have a cli, a tui, and finally a fastcgi or similar to host a simple todo list";
|
||||
license = lib.licenses.gpl3Plus;
|
||||
mainProgram = "todo";
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue