Merge pull request #32 from felixscheinost/feature/fix-wrong-import

Fix relative path to `rage.nix`
This commit is contained in:
Ryan Mulligan 2021-03-16 10:47:12 -07:00 committed by GitHub
commit f30f0eeb11
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -8,7 +8,7 @@ let
# we need at least rage 0.5.0 to support ssh keys
rage =
if lib.versionOlder pkgs.rage.version "0.5.0"
then pkgs.callPackage ./rage.nix { }
then pkgs.callPackage ../pkgs/rage.nix { }
else pkgs.rage;
ageBin = "${rage}/bin/rage";