Skip to content

Commit

Permalink
restore packages.nix
Browse files Browse the repository at this point in the history
  • Loading branch information
bbigras committed Aug 8, 2023
1 parent c0cec6f commit 27765f1
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions packages.nix
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
# from https://github.com/colemickens/nixpkgs-wayland/blob/c9c4a80715557caf57f403038a267f3c20859424/packages.nix

let
flake = 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 = ./.; };
in
flake.defaultNix.packages."${builtins.currentSystem}"

0 comments on commit 27765f1

Please sign in to comment.