diff --git a/flake.nix b/flake.nix index 6f1d845..049adda 100644 --- a/flake.nix +++ b/flake.nix @@ -1,19 +1,19 @@ { inputs = { - naersk.url = "github:nix-community/naersk/master"; nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - utils.url = "github:numtide/flake-utils"; + flake-utils.url = "github:numtide/flake-utils"; + naersk.url = "github:nix-community/naersk/master"; }; outputs = { self, nixpkgs, - utils, + flake-utils, naersk, }: let - packageOutputs = utils.lib.eachDefaultSystem ( + packageOutputs = flake-utils.lib.eachDefaultSystem ( system: let pkgs = import nixpkgs { inherit system; }; @@ -71,14 +71,6 @@ RUST_SRC_PATH = rustPlatform.rustLibSrc; }; - - # Only create hydra jobs for some systems - # pkgs.lib.optionalAttrs (builtins.elem system ["x86_64-linux" "aarch64-linux"]) { - # hydraJobs = - # { - # "music-reader" = defaultPackage; - # }; - # }; } ); in