tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libscfg: format, add updateScript
Michael Adler
1 year ago
f49c7fec
3923d25f
+17
-2
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
li
libscfg
package.nix
+17
-2
pkgs/by-name/li/libscfg/package.nix
···
1
1
-
{ stdenv, lib, fetchFromSourcehut, meson, ninja, pkg-config, wayland }:
1
1
+
{
2
2
+
stdenv,
3
3
+
lib,
4
4
+
fetchFromSourcehut,
5
5
+
meson,
6
6
+
ninja,
7
7
+
pkg-config,
8
8
+
wayland,
9
9
+
nix-update-script,
10
10
+
}:
2
11
3
12
stdenv.mkDerivation rec {
4
13
pname = "libscfg";
···
11
20
hash = "sha256-aTcvs7QuDOx17U/yP37LhvIGxmm2WR/6qFYRtfjRN6w=";
12
21
};
13
22
14
14
-
nativeBuildInputs = [ meson ninja pkg-config ];
23
23
+
nativeBuildInputs = [
24
24
+
meson
25
25
+
ninja
26
26
+
pkg-config
27
27
+
];
15
28
buildInputs = [ wayland ];
29
29
+
30
30
+
passthru.updateScript = nix-update-script { };
16
31
17
32
meta = with lib; {
18
33
homepage = "https://sr.ht/~emersion/libscfg";