looking-glass-client: B7-rc1 -> B7

+2 -21
+2 -21
pkgs/by-name/lo/looking-glass-client/package.nix
··· 1 { 2 stdenv, 3 lib, 4 - fetchpatch, 5 fetchFromGitHub, 6 - makeDesktopItem, 7 pkg-config, 8 cmake, 9 freefont_ttf, ··· 41 pipewireSupport ? true, 42 pulseSupport ? true, 43 }: 44 - 45 - let 46 - desktopItem = makeDesktopItem { 47 - name = "looking-glass-client"; 48 - desktopName = "Looking Glass Client"; 49 - type = "Application"; 50 - exec = "looking-glass-client"; 51 - icon = "lg-logo"; 52 - }; 53 - in 54 stdenv.mkDerivation (finalAttrs: { 55 pname = "looking-glass-client"; 56 - version = "B7-rc1"; 57 58 src = fetchFromGitHub { 59 owner = "gnif"; 60 repo = "LookingGlass"; 61 rev = finalAttrs.version; 62 - hash = "sha256-ne1Q+67+P8RHcTsqdiSSwkFf0g3pSNT91WN/lsSzssU="; 63 fetchSubmodules = true; 64 }; 65 66 patches = [ 67 - # Fix failing cmake assertion when disabling X11 without explicitly enabling Wayland. 68 - (fetchpatch { 69 - url = "https://github.com/gnif/LookingGlass/commit/20972cfd9b940fddf9e7f3d2887a271d16398979.patch"; 70 - hash = "sha256-CqB8AmOZ4YxnEsQkyu/ZEaun6ywpSh4B7PM+MFJF0qU="; 71 - stripLen = 1; 72 - }) 73 ./nanosvg-unvendor.diff 74 ]; 75 ··· 132 133 postInstall = '' 134 mkdir -p $out/share/pixmaps 135 - ln -s ${desktopItem}/share/applications $out/share/ 136 cp $src/resources/lg-logo.png $out/share/pixmaps 137 ''; 138
··· 1 { 2 stdenv, 3 lib, 4 fetchFromGitHub, 5 pkg-config, 6 cmake, 7 freefont_ttf, ··· 39 pipewireSupport ? true, 40 pulseSupport ? true, 41 }: 42 stdenv.mkDerivation (finalAttrs: { 43 pname = "looking-glass-client"; 44 + version = "B7"; 45 46 src = fetchFromGitHub { 47 owner = "gnif"; 48 repo = "LookingGlass"; 49 rev = finalAttrs.version; 50 + hash = "sha256-I84oVLeS63mnR19vTalgvLvA5RzCPTXV+tSsw+ImDwQ="; 51 fetchSubmodules = true; 52 }; 53 54 patches = [ 55 ./nanosvg-unvendor.diff 56 ]; 57 ··· 114 115 postInstall = '' 116 mkdir -p $out/share/pixmaps 117 cp $src/resources/lg-logo.png $out/share/pixmaps 118 ''; 119