11 lines
233 B
Nix
11 lines
233 B
Nix
{ mkDerivation, base, stdenv }:
|
|
mkDerivation {
|
|
pname = "ebook-manager";
|
|
version = "0.1.0.0";
|
|
src = ./.;
|
|
isLibrary = false;
|
|
isExecutable = true;
|
|
executableHaskellDepends = [ base ];
|
|
license = stdenv.lib.licenses.bsd3;
|
|
}
|