NixOS-based container for running GitHub actions
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

update nixpkgs

+7 -18
+4 -4
flake.lock
··· 2 2 "nodes": { 3 3 "nixpkgs": { 4 4 "locked": { 5 - "lastModified": 1770841267, 6 - "narHash": "sha256-BKNoPyCG5hRTJUNhwnL9PlWFujr8/18VzggAVRXl6us=", 7 - "rev": "ec7c70d12ce2fc37cb92aff673dcdca89d187bae", 5 + "lastModified": 1771008912, 6 + "narHash": "sha256-MUxwjvnO2hZitXm52phpSCcCv5Zx4DeVTAPZa8jcxtw=", 7 + "rev": "a82ccc39b39b621151d6732718e3e250109076fa", 8 8 "type": "tarball", 9 - "url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre944744.ec7c70d12ce2/nixexprs.tar.xz" 9 + "url": "https://releases.nixos.org/nixos/unstable/nixos-26.05pre945868.a82ccc39b39b/nixexprs.tar.xz" 10 10 }, 11 11 "original": { 12 12 "type": "tarball",
+3 -14
flake.nix
··· 435 435 ]; 436 436 }; 437 437 }; 438 - # push-container = pkgs.writeTextFile { 439 - # name = "push-container"; 440 - # destination = "/bin/push-container"; 441 - # text = lib.concatStringsSep "\n" [ 442 - # "#!${lib.getExe pkgs.nushell}" 443 - # "" 444 - # "alias regctl = ^${pkgs.regctl}/bin/regctl" 445 - # "alias gzip = ^${pkgs.gzip}/bin/gzip" 446 - # "" 447 - # (builtins.readFile ./push-container.nu) 448 - # ]; 449 - # executable = true; 450 - # }; 451 438 } 452 439 ); 453 440 devShells = forAllSystems (pkgs: { 454 441 default = pkgs.mkShell { 455 442 name = "nixos-runner"; 456 443 nativeBuildInputs = [ 457 - pkgs.regctl 458 444 pkgs.gzip 445 + pkgs.pinact 446 + pkgs.regctl 447 + pkgs.reuse 459 448 push-container.packages.${pkgs.stdenv.hostPlatform.system}.push-container 460 449 ]; 461 450