ff1a94e523
The nixpkgs-unstable channel's programs.sqlite was used to identify packages producing exactly one binary, and these automatically added to their package definitions wherever possible.
23 lines
658 B
Nix
23 lines
658 B
Nix
{ 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";
|
|
mainProgram = "showrgb";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ raskin ];
|
|
platforms = platforms.linux;
|
|
homepage = "https://xorg.freedesktop.org/";
|
|
};
|
|
})
|