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/X11/wayv/default.nix
Normal file
41
pkgs/tools/X11/wayv/default.nix
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
{lib, stdenv, fetchFromGitHub, fetchpatch, libX11}:
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "wayv";
|
||||
version = "0.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mikemb";
|
||||
repo = pname;
|
||||
rev = "b716877603250f690f08b593bf30fd5e8a93a872";
|
||||
sha256 = "046dvaq6na1fyxz5nrjg13aaz6ific9wbygck0dknqqfmmjrsv3b";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Pull patch pending upstream inclusion for -fno-common toolchain support:
|
||||
# https://github.com/mikemb/wayV/pull/1
|
||||
(fetchpatch {
|
||||
name = "fno-common.patch";
|
||||
url = "https://github.com/mikemb/wayV/commit/b927793e2a2c92ff1f97b9df9e58c26e73e72012.patch";
|
||||
sha256 = "19i10966b0n710dic64p5ajsllkjnz16bp0crxfy9vv08hj1xygi";
|
||||
})
|
||||
];
|
||||
|
||||
buildInputs = [ libX11 ];
|
||||
|
||||
postInstall = ''
|
||||
make -C doc install
|
||||
mkdir -p "$out"/share/doc/wayv
|
||||
cp [A-Z][A-Z]* "$out"/share/doc/wayv
|
||||
cp doc/[A-Z][A-Z]* "$out"/share/doc/wayv
|
||||
cp doc/*.txt "$out"/share/doc/wayv
|
||||
cp doc/*.jpg "$out"/share/doc/wayv
|
||||
'';
|
||||
|
||||
meta = {
|
||||
description = "A gesture control for X11";
|
||||
license = lib.licenses.gpl2Plus ;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
platforms = lib.platforms.linux;
|
||||
homepage = "https://github.com/mikemb/wayV";
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue