tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
skippy-xd: 0.8.0 -> 2025.09.07
kyehn
5 months ago
7524bb23
5364a5ff
+16
-9
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
sk
skippy-xd
package.nix
+16
-9
pkgs/by-name/sk/skippy-xd/package.nix
···
13
giflib,
14
pkg-config,
15
}:
16
-
stdenv.mkDerivation {
0
17
pname = "skippy-xd";
18
-
version = "0.8.0";
0
19
src = fetchFromGitHub {
20
owner = "felixfung";
21
repo = "skippy-xd";
22
-
rev = "30da57cb59ccf77f766718f7d533ddbe533ba241";
23
-
hash = "sha256-YBUDbI1SHsBI/fA3f3W1sPu3wXSodMbTGvAMqOz7RCM=";
24
};
0
25
nativeBuildInputs = [ pkg-config ];
0
26
buildInputs = [
27
xorgproto
28
libX11
···
34
libjpeg
35
giflib
36
];
0
37
makeFlags = [ "PREFIX=$(out)" ];
0
38
preInstall = ''
39
sed -e "s@/etc/xdg@$out&@" -i Makefile
40
'';
41
-
meta = with lib; {
0
42
description = "Expose-style compositing-based standalone window switcher";
43
homepage = "https://github.com/felixfung/skippy-xd";
44
-
license = licenses.gpl2Plus;
45
-
maintainers = with maintainers; [ raskin ];
46
-
platforms = platforms.linux;
47
};
48
-
}
···
13
giflib,
14
pkg-config,
15
}:
16
+
17
+
stdenv.mkDerivation (finalAttrs: {
18
pname = "skippy-xd";
19
+
version = "2025.09.07";
20
+
21
src = fetchFromGitHub {
22
owner = "felixfung";
23
repo = "skippy-xd";
24
+
tag = "v${finalAttrs.version}";
25
+
hash = "sha256-PxVU0atl5OLINFTM1n3REVA/M9iozkHOW9kPgTU/+qI=";
26
};
27
+
28
nativeBuildInputs = [ pkg-config ];
29
+
30
buildInputs = [
31
xorgproto
32
libX11
···
38
libjpeg
39
giflib
40
];
41
+
42
makeFlags = [ "PREFIX=$(out)" ];
43
+
44
preInstall = ''
45
sed -e "s@/etc/xdg@$out&@" -i Makefile
46
'';
47
+
48
+
meta = {
49
description = "Expose-style compositing-based standalone window switcher";
50
homepage = "https://github.com/felixfung/skippy-xd";
51
+
license = lib.licenses.gpl2Plus;
52
+
maintainers = with lib.maintainers; [ raskin ];
53
+
platforms = lib.platforms.linux;
54
};
55
+
})