Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- { pkgs ? import <nixpkgs> {} }: let shared = pkgs.haskellPackages.callPackage ../shared/default.nix {}; in
- { mkDerivation, base, miso, stdenv}:
- mkDerivation {
- pname = "app";
- version = "0.1.0.0";
- src = ./.;
- isLibrary = false;
- isExecutable = true;
- executableHaskellDepends = [ base miso ];
- description = "First miso app";
- license = stdenv.lib.licenses.bsd3;
- }
Advertisement
Add Comment
Please, Sign In to add comment