nixpkgs/pkgs/data/misc/xorg-rgb/default.nix
stuebinm ff1a94e523 treewide: add meta.mainProgram to packages with a single binary
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.
2024-03-19 03:14:51 +01:00

24 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/";
};
})