clipboard-substitutor/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

9 lines
290 B
Nix
Raw Normal View History

(import (let
lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in
fetchTarball {
2023-06-25 12:29:01 +05:30
url = "https://github.com/nix-community/flake-compat/archive/${lock.nodes.flake-compat.locked.rev}.tar.gz";
sha256 = lock.nodes.flake-compat.locked.narHash;
}) {src = ./.;})
.defaultNix