Skip to content

Commit aef43f2

Browse files
committed
drop flake-utils
1 parent ca4a665 commit aef43f2

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

flake.nix

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
{
22
description = "nix-ld: run unpatched dynamic binaries on NixOS";
33

4-
inputs.utils.url = "github:numtide/flake-utils";
54
inputs.nixpkgs.url = "github:NixOS/nixpkgs";
65

76
nixConfig.extra-substituters = [ "https://cache.garnix.io" ];
@@ -10,12 +9,11 @@
109
outputs = {
1110
self,
1211
nixpkgs,
13-
utils,
1412
}:
1513
{
1614
nixosModules.nix-ld = import ./modules/nix-ld.nix;
1715
}
18-
// utils.lib.eachSystem ["x86_64-linux" "aarch64-linux"] (system: let
16+
// nixpkgs.lib.genAttrs ["x86_64-linux" "aarch64-linux"] (system: let
1917
pkgs = nixpkgs.legacyPackages.${system};
2018
in {
2119
packages.nix-ld = pkgs.callPackage ./default.nix {};

0 commit comments

Comments
 (0)