Skip to content

Commit

Permalink
Merge pull request #261348 from peterhoeg/u/rgb
Browse files Browse the repository at this point in the history
xorg-rgb: 1.0.6 -> 1.1.0
  • Loading branch information
7c6f434c committed Oct 16, 2023
2 parents d4b59bc + c4f8ad5 commit 11ab118
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions pkgs/data/misc/xorg-rgb/default.nix
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{ lib, stdenv, fetchurl, pkg-config, xorgproto }:

stdenv.mkDerivation rec {
stdenv.mkDerivation (finalAttrs: {
pname = "rgb";
version = "1.0.6";
version = "1.1.0";

src = fetchurl {
url = "https://xorg.freedesktop.org/archive/individual/app/rgb-${version}.tar.bz2";
sha256 = "1c76zcjs39ljil6f6jpx1x17c8fnvwazz7zvl3vbjfcrlmm7rjmv";
url = "https://xorg.freedesktop.org/archive/individual/app/rgb-${finalAttrs.version}.tar.xz";
hash = "sha256-/APX9W5bKmF2aBZ/iSeUjM5U+TCX58zZ8FYHf0ee03s=";
};

nativeBuildInputs = [ pkg-config ];
Expand All @@ -15,8 +15,8 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "X11 colorname to RGB mapping database";
license = licenses.mit;
maintainers = [ maintainers.raskin ];
maintainers = with maintainers; [ raskin ];
platforms = platforms.linux;
homepage = "https://xorg.freedesktop.org/";
};
}
})

0 comments on commit 11ab118

Please sign in to comment.