-
-
Notifications
You must be signed in to change notification settings - Fork 70
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
27 additions
and
66 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,22 +1,17 @@ | ||
{ | ||
description = "A flake for nixpkgs-update"; | ||
description = "update nixpkgs automatically"; | ||
|
||
inputs.flake-compat = { url = "github:edolstra/flake-compat"; flake = false; }; | ||
inputs.nixpkgs = { type = "github"; owner = "nixos"; repo = "nixpkgs"; }; | ||
inputs.mmdoc.url = "github:ryantm/mmdoc"; | ||
inputs.mmdoc.inputs.nixpkgs.follows = "nixpkgs"; | ||
|
||
nixConfig.extra-substituters = [ "https://nixpkgs-update.cachix.org" ]; | ||
nixConfig.extra-trusted-public-keys = [ "nixpkgs-update.cachix.org-1:6y6Z2JdoL3APdu6/+Iy8eZX2ajf09e4EE9SnxSML1W8=" ]; | ||
nixConfig.extra-substituters = "https://nixpkgs-update.cachix.org"; | ||
nixConfig.extra-trusted-public-keys = "nixpkgs-update.cachix.org-1:6y6Z2JdoL3APdu6/+Iy8eZX2ajf09e4EE9SnxSML1W8="; | ||
|
||
outputs = { self, flake-compat, nixpkgs, mmdoc } @ args: | ||
outputs = { self, nixpkgs, mmdoc } @ args: | ||
{ | ||
packages."x86_64-linux" = import ./pkgs/default.nix (args // { system = "x86_64-linux"; }); | ||
defaultPackage."x86_64-linux" = self.packages."x86_64-linux".nixpkgs-update; | ||
devShell."x86_64-linux" = self.packages."x86_64-linux".devShell; | ||
|
||
packages."x86_64-darwin" = import ./pkgs/default.nix (args // { system = "x86_64-darwin"; }); | ||
defaultPackage."x86_64-darwin" = self.packages."x86_64-darwin".nixpkgs-update; | ||
devShell."x86_64-darwin" = self.packages."x86_64-darwin".devShell; | ||
packages.x86_64-linux = import ./pkgs/default.nix (args // { system = "x86_64-linux"; }); | ||
devShell.x86_64-linux = self.packages."x86_64-linux".devShell; | ||
packages.x86_64-darwin = import ./pkgs/default.nix (args // { system = "x86_64-darwin"; }); | ||
devShell.x86_64-darwin = self.packages."x86_64-darwin".devShell; | ||
}; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
da82da1
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The removal of
default.nix
broke the install instructions:https://github.com/ryantm/nixpkgs-update/blob/da82da1b5d00bc119722492d857c4d5f63b5041a/doc/installation.md
Because
default.nix
is missing,-f https://github.com/ryantm/nixpkgs-update/archive/main.tar.gz
no longer works.See also #335.