Compare commits

...

No commits in common. "e5e495ed51262c540604d1a2c7ca4fa12999d01c" and "1dff0fd75b8685558659d6ac44c79fd7e45e1524" have entirely different histories.

2 changed files with 0 additions and 14 deletions

View File

@ -3,7 +3,6 @@ let
pkgs = import sources.nixpkgs {};
ghcVersion = "ghc865";
haskellPackages = pkgs.haskell.packages."${ghcVersion}";
haskellClosure = haskellPackages.callPackage ./haskell-playground.nix {};
hlib = pkgs.haskell.lib;
in haskellPackages.developPackage {
name = "haskell-playground";

View File

@ -1,13 +0,0 @@
{ mkDerivation, attoparsec, base, extra, lib, megaparsec, relude }:
mkDerivation {
pname = "haskell-playground";
version = "0.1.0.0";
src = ./.;
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
attoparsec base extra megaparsec relude
];
license = "unknown";
hydraPlatforms = lib.platforms.none;
}