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/applications/misc/razergenie/default.nix
Normal file
41
pkgs/applications/misc/razergenie/default.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{ stdenv, fetchFromGitHub, lib, meson, ninja, pkg-config, qtbase, qttools
|
||||
, wrapQtAppsHook
|
||||
, enableExperimental ? false
|
||||
, includeMatrixDiscovery ? false
|
||||
}:
|
||||
|
||||
let
|
||||
version = "0.9.0";
|
||||
pname = "razergenie";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
inherit pname version;
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "z3ntu";
|
||||
repo = "RazerGenie";
|
||||
rev = "v${version}";
|
||||
sha256 = "17xlv26q8sdbav00wdm043449pg2424l3yaf8fvkc9rrlqkv13a4";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
pkg-config meson ninja wrapQtAppsHook
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
qtbase qttools
|
||||
];
|
||||
|
||||
mesonFlags = [
|
||||
"-Denable_experimental=${lib.boolToString enableExperimental}"
|
||||
"-Dinclude_matrix_discovery=${lib.boolToString includeMatrixDiscovery}"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/z3ntu/RazerGenie";
|
||||
description = "Qt application for configuring your Razer devices under GNU/Linux";
|
||||
license = licenses.gpl3;
|
||||
maintainers = with maintainers; [ f4814n Mogria ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue