uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
41
pkgs/tools/wayland/wl-gammactl/default.nix
Normal file
41
pkgs/tools/wayland/wl-gammactl/default.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ lib, stdenv, fetchFromGitHub
|
||||
, meson, pkg-config, ninja
|
||||
, wayland, wayland-scanner, wlroots, wlr-protocols, gtk3, glib
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wl-gammactl";
|
||||
version = "unstable-2021-09-13";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mischw";
|
||||
repo = pname;
|
||||
rev = "e2385950d97a3baf1b6e2f064dd419ccec179586";
|
||||
sha256 = "8iMJK4O/sNIGPOBZQEfK47K6OjT6sxYFe19O2r/VSr8=";
|
||||
};
|
||||
|
||||
strictDeps = true;
|
||||
nativeBuildInputs = [ meson pkg-config ninja glib wayland-scanner ];
|
||||
buildInputs = [ wayland wlroots gtk3 ];
|
||||
|
||||
postUnpack = ''
|
||||
rmdir source/wlr-protocols
|
||||
ln -s ${wlr-protocols}/share/wlr-protocols source
|
||||
'';
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace meson.build --replace "git = find_program('git')" "git = 'false'"
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Contrast, brightness, and gamma adjustments for Wayland";
|
||||
longDescription = ''
|
||||
Small GTK GUI application to set contrast, brightness, and gamma for wayland compositors which
|
||||
support the wlr-gamma-control protocol extension.
|
||||
'';
|
||||
homepage = "https://github.com/mischw/wl-gammactl";
|
||||
license = licenses.mit;
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ lodi ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue