Guest User

Untitled

a guest
May 9th, 2018
154
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.31 KB | None | 0 0
  1. imports = [ ../shared/default.nix ];
  2.  
  3. { mkDerivation, base, miso, stdenv}:
  4. mkDerivation {
  5. pname = "app";
  6. version = "0.1.0.0";
  7. src = ./.;
  8. isLibrary = false;
  9. isExecutable = true;
  10. executableHaskellDepends = [ base miso shared];
  11. description = "First miso app";
  12. license = stdenv.lib.licenses.bsd3;
  13. }
Advertisement
Add Comment
Please, Sign In to add comment