about summary refs log tree commit diff
path: root/nixpkgs/pkgs/data/misc/xorg-rgb/default.nix
blob: 646f4ae491b0d89540cc8a445d8865dbe65c0aeb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ lib, stdenv, fetchurl, pkg-config, xorgproto }:

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

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

  nativeBuildInputs = [ pkg-config ];
  buildInputs = [ xorgproto ];

  meta = with lib; {
    description = "X11 colorname to RGB mapping database";
    license = licenses.mit;
    maintainers = with maintainers; [ raskin ];
    platforms = platforms.linux;
    homepage = "https://xorg.freedesktop.org/";
  };
})