Skip to content

Commit

Permalink
Revert "adding appName to flake options and trying to work around hls…
Browse files Browse the repository at this point in the history
… issue."

Undoing push to master.

This reverts commit 4593fc5.
  • Loading branch information
Montmorency committed Jul 26, 2024
1 parent 4593fc5 commit 040962d
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 25 deletions.
3 changes: 1 addition & 2 deletions devenv-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,6 @@ that is defined in flake-module.nix
hspec
ihp-hsx
ihp-postgresql-simple-extra
haskell-language-server
]);

scripts.tests.exec = ''
Expand All @@ -112,7 +111,7 @@ that is defined in flake-module.nix
'';

languages.haskell.stack = null; # Stack is not used in IHP
#languages.haskell.languageServer = ghcCompiler.haskell-language-server;
languages.haskell.languageServer = ghcCompiler.haskell-language-server;
};

packages = {
Expand Down
23 changes: 0 additions & 23 deletions flake-module.nix
Original file line number Diff line number Diff line change
Expand Up @@ -52,29 +52,6 @@ ihpFlake:
];
};

appName = lib.mkOption {
description =''
The derivation name.
Can be omitted if pname and version are set, in which case it is automatically set to ''${pname}-''${version}.
'';
type= lib.types.str;
default="app";
};

pName = lib.mkOption {
description = ''
The package name.
'';
type= lib.types.str;
};

version = lib.mkOption {
description = ''
The package version.
'';
type= lib.types.str;
};

projectPath = lib.mkOption {
description = ''
Path to the IHP project. You likely want to set this to `./.`.
Expand Down

0 comments on commit 040962d

Please sign in to comment.