4a7f99d55d
Part of: https://github.com/NixOS/nixpkgs/issues/108938 meta = with stdenv.lib; is a widely used pattern. We want to slowly remove the `stdenv.lib` indirection and encourage people to use `lib` directly. Thus let’s start with the meta field. This used a rewriting script to mostly automatically replace all occurances of this pattern, and add the `lib` argument to the package header if it doesn’t exist yet. The script in its current form is available at https://cs.tvl.fyi/depot@2f807d7f141068d2d60676a89213eaa5353ca6e0/-/blob/users/Profpatsch/nixpkgs-rewriter/default.nix
72 lines
1.3 KiB
Nix
72 lines
1.3 KiB
Nix
{ lib, stdenv
|
|
, fetchFromGitLab
|
|
, cairo
|
|
, dbus
|
|
, desktop-file-utils
|
|
, gettext
|
|
, glib
|
|
, gtk3
|
|
, libhandy_0
|
|
, meson
|
|
, ninja
|
|
, pango
|
|
, pkgconfig
|
|
, python3
|
|
, rustc
|
|
, rustPlatform
|
|
, wrapGAppsHook
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "contrast";
|
|
version = "0.0.3";
|
|
|
|
src = fetchFromGitLab {
|
|
domain = "gitlab.gnome.org";
|
|
group = "World";
|
|
owner = "design";
|
|
repo = "contrast";
|
|
rev = version;
|
|
sha256 = "0kk3mv7a6y258109xvgicmsi0lw0rcs00gfyivl5hdz7qh47iccy";
|
|
};
|
|
|
|
cargoSha256 = "0vi8nv4hkhsgqgz36xacwkk5cxirg6li44nbmk3x7vx7c64hzybq";
|
|
|
|
nativeBuildInputs = [
|
|
desktop-file-utils
|
|
gettext
|
|
meson
|
|
ninja
|
|
pkgconfig
|
|
python3
|
|
wrapGAppsHook
|
|
glib # for glib-compile-resources
|
|
];
|
|
|
|
buildInputs = [
|
|
cairo
|
|
dbus
|
|
glib
|
|
gtk3
|
|
libhandy_0
|
|
pango
|
|
];
|
|
|
|
postPatch = ''
|
|
patchShebangs build-aux/meson_post_install.py
|
|
'';
|
|
|
|
# Don't use buildRustPackage phases, only use it for rust deps setup
|
|
configurePhase = null;
|
|
buildPhase = null;
|
|
checkPhase = null;
|
|
installPhase = null;
|
|
|
|
meta = with lib; {
|
|
description = "Checks whether the contrast between two colors meet the WCAG requirements";
|
|
homepage = "https://gitlab.gnome.org/World/design/contrast";
|
|
license = licenses.gpl3;
|
|
maintainers = with maintainers; [ jtojnar ];
|
|
};
|
|
}
|
|
|