osidjasoidjsaoidjsaoidjsaoidjasodij# Please enter the commit message for your changes. Lines starting

This commit is contained in:
Giulio De Pasquale 2024-12-28 18:32:11 +00:00
parent 96084f0004
commit 619882bbc3
2 changed files with 1 additions and 18 deletions

View File

@ -1,13 +0,0 @@
(import
(
let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in
fetchTarball {
url = "https://github.com/edolstra/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}
)
{
src = ./.;
}).defaultNix

View File

@ -3,13 +3,9 @@
inputs = {
nixpkgs.url = "github:nixos/nixpkgs/nixos-24.11";
flake-compat = {
url = "github:edolstra/flake-compat";
flake = false;
};
};
outputs = { nixpkgs, flake-compat, ... }:
outputs = { nixpkgs, ... }:
let
inherit (nixpkgs) lib;