aboutsummaryrefslogtreecommitdiff
path: root/nix/flake-compat.nix
diff options
context:
space:
mode:
authorseth <getchoo@tuta.io>2023-05-27 13:45:28 -0400
committerseth <getchoo@tuta.io>2023-05-27 19:14:50 -0400
commitd582bf7f1f803d0ea8422732b46e25ee05f2fcb0 (patch)
tree30e294481b00a0d979dc0cbf4a697e99ab4ad513 /nix/flake-compat.nix
parentf24211e8b5d9af24ac3e27b0fdb50000a962c35f (diff)
downloadPrismLauncher-d582bf7f1f803d0ea8422732b46e25ee05f2fcb0.tar.gz
PrismLauncher-d582bf7f1f803d0ea8422732b46e25ee05f2fcb0.tar.bz2
PrismLauncher-d582bf7f1f803d0ea8422732b46e25ee05f2fcb0.zip
feat(nix): flake-utils -> flake-parts
Signed-off-by: seth <getchoo@tuta.io>
Diffstat (limited to 'nix/flake-compat.nix')
-rw-r--r--nix/flake-compat.nix9
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 = ../.;}