reciproka-web/reciproka-web.nix
2024-01-08 17:18:12 +10:00

12 lines
279 B
Nix

{ mkDerivation, base, hakyll, stdenv }:
mkDerivation {
pname = "reciproka-web";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base hakyll ];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}