resrok-web/resrok-web.nix

12 lines
276 B
Nix
Raw Normal View History

2021-11-04 09:46:37 +00:00
{ mkDerivation, base, hakyll, stdenv }:
mkDerivation {
2021-11-18 10:08:04 +00:00
pname = "resrok-web";
2021-11-04 09:46:37 +00:00
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [ base hakyll ];
license = "unknown";
hydraPlatforms = stdenv.lib.platforms.none;
}