1 { lib, stdenv, fetchurl, pkg-config, xorgproto }:
3 stdenv.mkDerivation (finalAttrs: {
8 url = "https://xorg.freedesktop.org/archive/individual/app/rgb-${finalAttrs.version}.tar.xz";
9 hash = "sha256-/APX9W5bKmF2aBZ/iSeUjM5U+TCX58zZ8FYHf0ee03s=";
12 nativeBuildInputs = [ pkg-config ];
13 buildInputs = [ xorgproto ];
16 description = "X11 colorname to RGB mapping database";
17 mainProgram = "showrgb";
18 license = licenses.mit;
19 maintainers = with maintainers; [ raskin ];
20 platforms = platforms.linux;
21 homepage = "https://xorg.freedesktop.org/";