skippy-xd: 0.8.0 -> 2025.09.07

kyehn 7524bb23 5364a5ff

+16 -9
+16 -9
pkgs/by-name/sk/skippy-xd/package.nix
··· 13 13 giflib, 14 14 pkg-config, 15 15 }: 16 - stdenv.mkDerivation { 16 + 17 + stdenv.mkDerivation (finalAttrs: { 17 18 pname = "skippy-xd"; 18 - version = "0.8.0"; 19 + version = "2025.09.07"; 20 + 19 21 src = fetchFromGitHub { 20 22 owner = "felixfung"; 21 23 repo = "skippy-xd"; 22 - rev = "30da57cb59ccf77f766718f7d533ddbe533ba241"; 23 - hash = "sha256-YBUDbI1SHsBI/fA3f3W1sPu3wXSodMbTGvAMqOz7RCM="; 24 + tag = "v${finalAttrs.version}"; 25 + hash = "sha256-PxVU0atl5OLINFTM1n3REVA/M9iozkHOW9kPgTU/+qI="; 24 26 }; 27 + 25 28 nativeBuildInputs = [ pkg-config ]; 29 + 26 30 buildInputs = [ 27 31 xorgproto 28 32 libX11 ··· 34 38 libjpeg 35 39 giflib 36 40 ]; 41 + 37 42 makeFlags = [ "PREFIX=$(out)" ]; 43 + 38 44 preInstall = '' 39 45 sed -e "s@/etc/xdg@$out&@" -i Makefile 40 46 ''; 41 - meta = with lib; { 47 + 48 + meta = { 42 49 description = "Expose-style compositing-based standalone window switcher"; 43 50 homepage = "https://github.com/felixfung/skippy-xd"; 44 - license = licenses.gpl2Plus; 45 - maintainers = with maintainers; [ raskin ]; 46 - platforms = platforms.linux; 51 + license = lib.licenses.gpl2Plus; 52 + maintainers = with lib.maintainers; [ raskin ]; 53 + platforms = lib.platforms.linux; 47 54 }; 48 - } 55 + })