fix: fup-repl script

This commit is contained in:
Gytis Ivaskevicius 2024-07-03 00:07:29 +03:00
parent 3542fe9126
commit f2a6c2a04a
No known key found for this signature in database
GPG Key ID: 5680CA190BD2B15B
2 changed files with 4 additions and 4 deletions

View File

@ -11,9 +11,9 @@ writeShellScriptBin "repl" ''
;;
*)
if [ -z "$1" ]; then
nix repl ${./repl.nix}
nix repl --file ${./repl.nix}
else
nix repl --arg flakePath $(${coreutils}/bin/readlink -f $1 | ${gnused}/bin/sed 's|/flake.nix||') ${./repl.nix}
nix repl --arg flakePath $(${coreutils}/bin/readlink -f $1 | ${gnused}/bin/sed 's|/flake.nix||') --file ${./repl.nix}
fi
;;
esac

View File

@ -5,7 +5,7 @@ let
selfFlake =
if pathExists registryPath
then filter (it: it.from.id == "self") (fromJSON (readFile registryPath)).flakes
then filter (it: it.from.id == "self") (fromJSON (builtins.unsafeDiscardStringContext (readFile registryPath))).flakes
else [ ];
flakePath' = toString
@ -21,7 +21,7 @@ let
nixpkgsFromInputsPath = flake.inputs.nixpkgs.outPath or "";
nixpkgs = flake.pkgs.${currentSystem}.nixpkgs or (if nixpkgsFromInputsPath != "" then import nixpkgsFromInputsPath { } else { });
nixpkgsOutput = (removeAttrs (nixpkgs // nixpkgs.lib or { }) [ "options" "config" ]);
nixpkgsOutput = removeAttrs (nixpkgs // nixpkgs.lib or { }) [ "options" "config" ];
in
{ inherit flake; }
// flake