xorg-rgb: init at 1.0.6
This commit is contained in:
parent
8f609149d1
commit
7a46312f1c
2 changed files with 24 additions and 0 deletions
22
pkgs/data/misc/xorg-rgb/default.nix
Normal file
22
pkgs/data/misc/xorg-rgb/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{stdenv, fetchurl, pkgconfig, xproto}:
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
pname = "rgb";
|
||||
version = "1.0.6";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://xorg.freedesktop.org/archive/individual/app/rgb-${version}.tar.bz2";
|
||||
sha256 = "1c76zcjs39ljil6f6jpx1x17c8fnvwazz7zvl3vbjfcrlmm7rjmv";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [pkgconfig];
|
||||
buildInputs = [xproto];
|
||||
meta = {
|
||||
inherit version;
|
||||
description = "X11 colorname to RGB mapping database";
|
||||
license = stdenv.lib.licenses.mit;
|
||||
maintainers = [stdenv.lib.maintainers.raskin];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
homepage = http://xorg.freedesktop.org/;
|
||||
};
|
||||
}
|
|
@ -12670,6 +12670,8 @@ with pkgs;
|
|||
|
||||
xlsx2csv = pythonPackages.xlsx2csv;
|
||||
|
||||
xorg-rgb = callPackage ../data/misc/xorg-rgb {};
|
||||
|
||||
zeal = libsForQt5.callPackage ../data/documentation/zeal { };
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue