2021-01-17 02:14:13 +00:00
|
|
|
{lib, stdenv, fetchurl, pkg-config, xorgproto}:
|
2017-03-30 18:56:12 +01:00
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "rgb";
|
|
|
|
version = "1.0.6";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://xorg.freedesktop.org/archive/individual/app/rgb-${version}.tar.bz2";
|
|
|
|
sha256 = "1c76zcjs39ljil6f6jpx1x17c8fnvwazz7zvl3vbjfcrlmm7rjmv";
|
|
|
|
};
|
|
|
|
|
2021-01-17 02:14:13 +00:00
|
|
|
nativeBuildInputs = [pkg-config];
|
2018-12-31 03:40:47 +00:00
|
|
|
buildInputs = [xorgproto];
|
2017-03-30 18:56:12 +01:00
|
|
|
meta = {
|
|
|
|
description = "X11 colorname to RGB mapping database";
|
2021-01-15 07:29:18 +00:00
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = [lib.maintainers.raskin];
|
|
|
|
platforms = lib.platforms.linux;
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://xorg.freedesktop.org/";
|
2017-03-30 18:56:12 +01:00
|
|
|
};
|
|
|
|
}
|