spacepaste

  1.  
  2. { mkDerivation, base, stdenv }:
  3. mkDerivation {
  4. pname = "bohmian";
  5. version = "0.1.0.0";
  6. src = ./.;
  7. isLibrary = false;
  8. isExecutable = true;
  9. executableHaskellDepends = [ base ];
  10. license = stdenv.lib.licenses.bsd3;
  11. }
  12.