diff options
author | Sefa Eyeoglu <contact@scrumplex.net> | 2023-06-06 08:10:39 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-06-06 08:10:39 +0200 |
commit | 7e016c44c14d28001d0e6424e90d0eda95451ab7 (patch) | |
tree | 62273d2fa3e3145ff4539f07a13ae74cd2aae593 /nix/flake-compat.nix | |
parent | e1b37f3cd3d9383dcc70d0d7fac29f8158fbc379 (diff) | |
parent | 29e532c096e8c89ba3f0e071fbdecf646f9814ea (diff) | |
download | PrismLauncher-7e016c44c14d28001d0e6424e90d0eda95451ab7.tar.gz PrismLauncher-7e016c44c14d28001d0e6424e90d0eda95451ab7.tar.bz2 PrismLauncher-7e016c44c14d28001d0e6424e90d0eda95451ab7.zip |
Merge pull request #1093 from getchoo/use-flake-parts
Refactor Nix Flake
Diffstat (limited to 'nix/flake-compat.nix')
-rw-r--r-- | nix/flake-compat.nix | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/nix/flake-compat.nix b/nix/flake-compat.nix deleted file mode 100644 index 7162a6cf..00000000 --- a/nix/flake-compat.nix +++ /dev/null @@ -1,9 +0,0 @@ -let - lock = builtins.fromJSON (builtins.readFile ../flake.lock); - inherit (lock.nodes.flake-compat.locked) rev narHash; - flake-compat = fetchTarball { - url = "https://github.com/edolstra/flake-compat/archive/${rev}.tar.gz"; - sha256 = narHash; - }; -in - import flake-compat {src = ../.;} |