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