File tree Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Expand file tree Collapse file tree 2 files changed +11
-7
lines changed Original file line number Diff line number Diff line change 8
8
runs-on : ubuntu-latest
9
9
10
10
steps :
11
- - uses : actions/checkout@v1
12
- - uses : cachix/install-nix-action@v6
11
+ - uses : actions/checkout@v4
12
+ - uses : cachix/install-nix-action@v31
13
+ with :
14
+ nix_path : nixpkgs=channel:nixos-unstable
13
15
- run : nix-build
14
16
15
17
build_nix_macos :
16
18
name : Build with Nix on a macOS
17
19
runs-on : macos-latest
18
20
19
21
steps :
20
- - uses : actions/checkout@v1
21
- - uses : cachix/install-nix-action@v6
22
+ - uses : actions/checkout@v4
23
+ - uses : cachix/install-nix-action@v31
24
+ with :
25
+ nix_path : nixpkgs=channel:nixos-unstable
22
26
- run : nix-build
23
27
24
28
build_ubuntu :
25
29
name : Build directly on an Ubuntu
26
30
runs-on : ubuntu-latest
27
31
28
32
steps :
29
- - uses : actions/checkout@v1
33
+ - uses : actions/checkout@v4
30
34
- run : |
31
35
sudo apt-get update
32
36
sudo apt-get install -y build-essential libnotify-dev
Original file line number Diff line number Diff line change @@ -5,8 +5,8 @@ stdenv.mkDerivation rec {
5
5
6
6
src = lib . cleanSource ./. ;
7
7
8
- buildInputs = [ libnotify gdk_pixbuf ] ;
9
- nativeBuildInputs = [ pkgconfig ] ;
8
+ buildInputs = [ libnotify gdk-pixbuf ] ;
9
+ nativeBuildInputs = [ pkg-config ] ;
10
10
11
11
installPhase = ''
12
12
mkdir -p $out/bin
You can’t perform that action at this time.
0 commit comments