Bump nixpkgs rev (#25361)

* Bump nixpkgs revision

* Update nix-direnv

* Remove extra nix functionalities

Both nix-direnv and legacy command nix-shell fail. Reverting to
flakes-only commands.

* Pin nixpkgs per suggestion

See https://github.com/space-wizards/space-station-14/pull/25361#discussion_r1494196038

* Revert nix-direnv removal

* Add python3 to shell.nix
This commit is contained in:
Ioannis Eleftheriou
2024-02-19 18:08:05 +00:00
committed by GitHub
parent bec96f3016
commit 16d18abdcf
3 changed files with 11 additions and 9 deletions

View File

@@ -1,8 +1,9 @@
{ pkgs ? import (builtins.fetchTarball {
{ pkgs ? (let lock = builtins.fromJSON (builtins.readFile ./flake.lock);
in import (builtins.fetchTarball {
url =
"https://github.com/NixOS/nixpkgs/archive/cda0e75a0bd7cf05bd3e40658c163e4f8f376b7b.tar.gz";
sha256 = "sha256-Toz3HEHeq6Esr5uDOMel8BiGSa94gj+og3Yz4YEgjYI=";
}) { } }:
"https://github.com/NixOS/nixpkgs/archive/${lock.nodes.nixpkgs.locked.rev}.tar.gz";
sha256 = lock.nodes.nixpkgs.locked.narHash;
}) { }) }:
let
dependencies = with pkgs; [
@@ -41,6 +42,7 @@ let
dbus
at-spi2-core
cups
python3
];
in pkgs.mkShell {
name = "space-station-14-devshell";