Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)

tint2: 16.4 -> 16.6.1 (#46994)

authored by

José Romildo Malaquias and committed by
xeji
0c631248 a32d7e0c

+7 -9
+7 -9
pkgs/applications/misc/tint2/default.nix
··· 6 7 stdenv.mkDerivation rec { 8 name = "tint2-${version}"; 9 - version = "16.4"; 10 11 src = fetchFromGitLab { 12 owner = "o9000"; 13 repo = "tint2"; 14 rev = version; 15 - sha256 = "1h9l45zimai2hqfcf2y98g4i03imhmvm3mlsld9x99i650kxr5jm"; 16 }; 17 18 enableParallelBuilding = true; ··· 24 libXdmcp libstartup_notification hicolor-icon-theme ]; 25 26 postPatch = '' 27 - substituteInPlace CMakeLists.txt --replace /etc $out/etc 28 for f in ./src/launcher/apps-common.c \ 29 - ./src/launcher/icon-theme-common.c \ 30 - ./themes/*tint2rc 31 do 32 substituteInPlace $f --replace /usr/share/ /run/current-system/sw/share/ 33 done 34 ''; 35 36 - meta = { 37 homepage = https://gitlab.com/o9000/tint2; 38 description = "Simple panel/taskbar unintrusive and light (memory, cpu, aestetic)"; 39 - license = stdenv.lib.licenses.gpl2; 40 - platforms = stdenv.lib.platforms.linux; 41 - maintainers = [ stdenv.lib.maintainers.romildo ]; 42 }; 43 }
··· 6 7 stdenv.mkDerivation rec { 8 name = "tint2-${version}"; 9 + version = "16.6.1"; 10 11 src = fetchFromGitLab { 12 owner = "o9000"; 13 repo = "tint2"; 14 rev = version; 15 + sha256 = "1h5bn4vi7gffwi4mpwpn0s6vxvl44rn3m9b23w8q9zyz9v24flz7"; 16 }; 17 18 enableParallelBuilding = true; ··· 24 libXdmcp libstartup_notification hicolor-icon-theme ]; 25 26 postPatch = '' 27 for f in ./src/launcher/apps-common.c \ 28 + ./src/launcher/icon-theme-common.c 29 do 30 substituteInPlace $f --replace /usr/share/ /run/current-system/sw/share/ 31 done 32 ''; 33 34 + meta = with stdenv.lib; { 35 homepage = https://gitlab.com/o9000/tint2; 36 description = "Simple panel/taskbar unintrusive and light (memory, cpu, aestetic)"; 37 + license = licenses.gpl2; 38 + platforms = platforms.linux; 39 + maintainers = [ maintainers.romildo ]; 40 }; 41 }