Skip to content

Commit

Permalink
flake.nixpkgs: pin broken packages to 23.11
Browse files Browse the repository at this point in the history
  • Loading branch information
Gerschtli committed Jun 13, 2024
1 parent af76103 commit c153a25
Show file tree
Hide file tree
Showing 3 changed files with 33 additions and 1 deletion.
17 changes: 17 additions & 0 deletions flake.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@
nixpkgs.url = "github:NixOS/nixpkgs/nixos-24.05";
unstable.url = "github:NixOS/nixpkgs/nixpkgs-unstable";

nixpkgs-23-11.url = "github:NixOS/nixpkgs/nixos-23.11";

# some commit containing mysql57 and php74
nixpkgs-22-05.url = "github:NixOS/nixpkgs/695b3515251873e0a7e2021add4bba643c56cde3";

Expand Down
15 changes: 14 additions & 1 deletion flake/nixpkgs.nix
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ import inputs.nixpkgs {
inherit config system;
};

nixpkgs-23-11 = import inputs.nixpkgs-23-11 {
inherit config system;
};

nixpkgs-22-05 = import inputs.nixpkgs-22-05 {
inherit config system;
};
Expand All @@ -40,14 +44,23 @@ import inputs.nixpkgs {
inherit (unstable)
# need bleeding edge version
cachix
jetbrains
#jetbrains
minecraft-server
minecraftServers
portfolio
teamspeak_server
vscode
;

# FIXME: pin 23.11 release for broken packages
inherit (nixpkgs-23-11)
audacity
jetbrains
libreoffice
openshot-qt
thunderbird
;

# pin 22.05 release for removed packages
inherit (nixpkgs-22-05)
mysql57
Expand Down

0 comments on commit c153a25

Please sign in to comment.