Remove nixpkgs-unstable as target

main
Carsten Kragelund 2023-05-07 20:24:51 +02:00
parent eeedc74f19
commit 068b1c5f11
Signed by: nyx
GPG Key ID: CADDADEEC9F753C0
2 changed files with 3 additions and 2 deletions

@ -35,7 +35,8 @@ jobs:
- sanctureplicum
nixPath:
- nixpkgs=channel:nixos-unstable
- nixpkgs=channel:nixpkgs-unstable
# nixpkgs-unstable doesn't work
#- nixpkgs=channel:nixpkgs-unstable
# FIXME: Gitea on stable is using different patches.
# - nixpkgs=channel:nixos-22.11
runs-on: ubuntu-latest

@ -1,7 +1,7 @@
{ pkgs, giteaVersion, ... }:
let
nodeNix = (import ./node.nix { inherit pkgs giteaVersion; });
nodeEnv = (pkgs.callPackage ((builtins.trace nodeNix nodeNix) + "/default.nix") { });
nodeEnv = (pkgs.callPackage (nodeNix + "/default.nix") { });
in
pkgs.buildGoModule rec {
pname = "gitea-build";