Update mission-control
This commit is contained in:
parent
b21f59e123
commit
3a30ce4c5a
2 changed files with 7 additions and 7 deletions
6
flake.lock
generated
6
flake.lock
generated
|
@ -53,11 +53,11 @@
|
|||
"nixpkgs": "nixpkgs"
|
||||
},
|
||||
"locked": {
|
||||
"lastModified": 1671388575,
|
||||
"narHash": "sha256-UgWIv5iXW9xh1L20G4eh4wocLSGzjsdz5U/jJZhb60A=",
|
||||
"lastModified": 1671465334,
|
||||
"narHash": "sha256-wdV5rU+lpn/jYfdj+W6EtFdAz/PrSHHwy8FMWrG4VSw=",
|
||||
"owner": "Platonic-Systems",
|
||||
"repo": "mission-control",
|
||||
"rev": "4b4370280cca1070eb6c2571df645aa36e3abdaf",
|
||||
"rev": "cbdbc4e772fe08f856ae4865826f8ecac0af7c3d",
|
||||
"type": "github"
|
||||
},
|
||||
"original": {
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
mission-control.scripts = {
|
||||
docs = {
|
||||
description = "Start Hoogle server for project dependencies";
|
||||
command = ''
|
||||
exec = ''
|
||||
echo http://127.0.0.1:8888
|
||||
hoogle serve -p 8888 --local
|
||||
'';
|
||||
|
@ -53,19 +53,19 @@
|
|||
};
|
||||
repl = {
|
||||
description = "Start the cabal repl";
|
||||
command = ''
|
||||
exec = ''
|
||||
cabal repl "$@"
|
||||
'';
|
||||
category = "Dev Tools";
|
||||
};
|
||||
fmt = {
|
||||
description = "Format the source tree";
|
||||
command = "${lib.getExe pkgs.treefmt}";
|
||||
exec = "${lib.getExe pkgs.treefmt}";
|
||||
category = "Dev Tools ";
|
||||
};
|
||||
run = {
|
||||
description = "Run the project with ghcid auto-recompile";
|
||||
command = ''
|
||||
exec = ''
|
||||
ghcid -c "cabal repl exe:haskell-template" --warnings -T :main
|
||||
'';
|
||||
category = "Primary";
|
||||
|
|
Loading…
Reference in a new issue