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