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

Merge pull request #30420 from mimadrid/update/rofi-1.4.1

rofi: 1.3.1 -> 1.4.1

authored by Michael Raskin and committed by GitHub cceae9a5 874a3c03

+8 -7
+4 -3
pkgs/applications/misc/rofi/default.nix
··· 1 1 { stdenv, fetchurl, autoreconfHook, pkgconfig, libxkbcommon, pango, which, git 2 2 , cairo, glib, libxcb, xcbutil, xcbutilwm, xcbutilxrm, libstartup_notification 3 + , bison, flex, librsvg, check 3 4 }: 4 5 5 6 stdenv.mkDerivation rec { 6 - version = "1.3.1"; 7 + version = "1.4.1"; 7 8 name = "rofi-${version}"; 8 9 9 10 src = fetchurl { 10 11 url = "https://github.com/DaveDavenport/rofi/releases/download/${version}/${name}.tar.gz"; 11 - sha256 = "09i3vd8k6zqphrm382fglsmxc4q6dg00xddzl96kakszgvdd4qfs"; 12 + sha256 = "19x11s71q24gjdnsjf1ar6raq1drav7qp3nzjkw8qajpgvjrxwcn"; 12 13 }; 13 14 14 15 preConfigure = '' ··· 18 19 ''; 19 20 20 21 nativeBuildInputs = [ autoreconfHook pkgconfig ]; 21 - buildInputs = [ libxkbcommon pango cairo git 22 + buildInputs = [ libxkbcommon pango cairo git bison flex librsvg check 22 23 libstartup_notification libxcb xcbutil xcbutilwm xcbutilxrm which 23 24 ]; 24 25 doCheck = true;
+4 -4
pkgs/development/libraries/check/default.nix
··· 4 4 5 5 stdenv.mkDerivation rec { 6 6 name = "check-${version}"; 7 - version = "0.10.0"; 7 + version = "0.11.0"; 8 8 9 9 src = fetchurl { 10 - url = "mirror://sourceforge/check/${version}/check-${version}.tar.gz"; 11 - sha256 = "0lhhywf5nxl3dd0hdakra3aasl590756c9kmvyifb3vgm9k0gxgm"; 10 + url = "https://github.com/libcheck/check/releases/download/${version}/check-${version}.tar.gz"; 11 + sha256 = "05jn1pgb7hqb937xky2147nnq3r4qy5wwr79rddpax3bms5a9xr4"; 12 12 }; 13 13 14 14 # Test can randomly fail: http://hydra.nixos.org/build/7243912 ··· 28 28 can be used within source code editors and IDEs. 29 29 ''; 30 30 31 - homepage = http://check.sourceforge.net/; 31 + homepage = https://libcheck.github.io/check/; 32 32 33 33 license = licenses.lgpl2Plus; 34 34 platforms = platforms.all;