reciproka-web/reciproka-web.nix

12 lines
279 B
Nix
Raw Normal View History

2021-10-26 03:33:38 +00:00
{ mkDerivation, base, hakyll, stdenv }:
mkDerivation {
2023-08-24 10:58:49 +00:00
pname = "reciproka-web";
2021-10-26 03:33:38 +00:00
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base hakyll ];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}