Merge pull request #261348 from peterhoeg/u/rgb

xorg-rgb: 1.0.6 -> 1.1.0

authored by 7c6f434c and committed by GitHub 11ab1183 d4b59bcd

+6 -6
+6 -6
pkgs/data/misc/xorg-rgb/default.nix
··· 1 1 { lib, stdenv, fetchurl, pkg-config, xorgproto }: 2 2 3 - stdenv.mkDerivation rec { 3 + stdenv.mkDerivation (finalAttrs: { 4 4 pname = "rgb"; 5 - version = "1.0.6"; 5 + version = "1.1.0"; 6 6 7 7 src = fetchurl { 8 - url = "https://xorg.freedesktop.org/archive/individual/app/rgb-${version}.tar.bz2"; 9 - sha256 = "1c76zcjs39ljil6f6jpx1x17c8fnvwazz7zvl3vbjfcrlmm7rjmv"; 8 + url = "https://xorg.freedesktop.org/archive/individual/app/rgb-${finalAttrs.version}.tar.xz"; 9 + hash = "sha256-/APX9W5bKmF2aBZ/iSeUjM5U+TCX58zZ8FYHf0ee03s="; 10 10 }; 11 11 12 12 nativeBuildInputs = [ pkg-config ]; ··· 15 15 meta = with lib; { 16 16 description = "X11 colorname to RGB mapping database"; 17 17 license = licenses.mit; 18 - maintainers = [ maintainers.raskin ]; 18 + maintainers = with maintainers; [ raskin ]; 19 19 platforms = platforms.linux; 20 20 homepage = "https://xorg.freedesktop.org/"; 21 21 }; 22 - } 22 + })