Guest User

meh

a guest
Jan 7th, 2019
259
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.77 KB | None | 0 0
  1. -- meh.cabal --
  2. name: meh
  3. version: 0.1.0.0
  4. synopsis: meh
  5. license: AllRightsReserved
  6. build-type: Simple
  7. cabal-version: >=1.10
  8.  
  9. executable meh
  10. main-is: Main.hs
  11. build-depends: base >= 4.10.1 && < 4.12
  12. , aeson >= 1.2.4 && < 1.4
  13. hs-source-dirs: app
  14. type: exitcode-stdio-1.0
  15. default-language: Haskell2010
  16.  
  17.  
  18. ## meh.nix ##
  19. { mkDerivation, aeson, base, stdenv }:
  20. mkDerivation {
  21. pname = "meh";
  22. version = "0.1.0.0";
  23. src = ./.;
  24. isLibrary = false;
  25. isExecutable = true;
  26. executableHaskellDepends = [ aeson base ];
  27. description = "meh";
  28. license = stdenv.lib.licenses.unfree;
  29. hydraPlatforms = stdenv.lib.platforms.none;
  30. }
Advertisement
Add Comment
Please, Sign In to add comment