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
70
pkgs/applications/video/vokoscreen-ng/default.nix
Normal file
70
pkgs/applications/video/vokoscreen-ng/default.nix
Normal file
|
|
@ -0,0 +1,70 @@
|
|||
{ lib
|
||||
, mkDerivation
|
||||
, fetchFromGitHub
|
||||
, pkg-config
|
||||
, qmake
|
||||
, qttools
|
||||
, gstreamer
|
||||
, libX11
|
||||
, pulseaudio
|
||||
, qtbase
|
||||
, qtmultimedia
|
||||
, qtx11extras
|
||||
|
||||
, gst-plugins-base
|
||||
, gst-plugins-good
|
||||
, gst-plugins-bad
|
||||
, gst-plugins-ugly
|
||||
}:
|
||||
mkDerivation rec {
|
||||
|
||||
pname = "vokoscreen-ng";
|
||||
version = "3.0.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "vkohaupt";
|
||||
repo = "vokoscreenNG";
|
||||
rev = version;
|
||||
sha256 = "1302663hyp2xxhaavhfky24a2p9gz23i3rykmrc6c1n23h24snri";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Adaptation of previously used https://github.com/City-busz/vokoscreenNG/commit/0a3784095ecca582f7eb09551ceb34c309d83637 patch
|
||||
# used for 3.0.5 but incompatible at least since 3.0.8. The issue is addressed here https://github.com/vkohaupt/vokoscreenNG/issues/139
|
||||
./linux-support-installation-target.patch
|
||||
];
|
||||
|
||||
qmakeFlags = [ "src/vokoscreenNG.pro" ];
|
||||
|
||||
nativeBuildInputs = [ qttools pkg-config qmake ];
|
||||
buildInputs = [
|
||||
gstreamer
|
||||
libX11
|
||||
pulseaudio
|
||||
qtbase
|
||||
qtmultimedia
|
||||
qtx11extras
|
||||
|
||||
gst-plugins-base
|
||||
gst-plugins-good
|
||||
gst-plugins-bad
|
||||
gst-plugins-ugly
|
||||
];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace src/vokoscreenNG.pro \
|
||||
--replace lrelease-qt5 lrelease
|
||||
'';
|
||||
|
||||
postInstall = ''
|
||||
qtWrapperArgs+=(--prefix GST_PLUGIN_SYSTEM_PATH_1_0 : "$GST_PLUGIN_SYSTEM_PATH_1_0")
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "User friendly Open Source screencaster for Linux and Windows";
|
||||
license = licenses.gpl2Plus;
|
||||
homepage = "https://github.com/vkohaupt/vokoscreenNG";
|
||||
maintainers = with maintainers; [ shamilton ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
|
@ -0,0 +1,40 @@
|
|||
Seulement dans b: patch.patch
|
||||
Seulement dans b: ..rej
|
||||
diff --color -ur a/src/vokoscreenNG.pro b/src/vokoscreenNG.pro
|
||||
--- a/src/vokoscreenNG.pro 2021-02-03 15:00:57.377401016 +0100
|
||||
+++ b/src/vokoscreenNG.pro 2021-02-03 15:09:18.141905863 +0100
|
||||
@@ -160,7 +160,32 @@
|
||||
# systrayAlternative
|
||||
include(systrayAlternative/systrayAlternative.pri)
|
||||
|
||||
+unix:!macx {
|
||||
+ isEmpty(PREFIX) {
|
||||
+ PREFIX = /usr/local
|
||||
+ }
|
||||
+ isEmpty(BINDIR) {
|
||||
+ BINDIR = $$PREFIX/bin
|
||||
+ }
|
||||
+ isEmpty(DATADIR) {
|
||||
+ DATADIR = $$PREFIX/share
|
||||
+ }
|
||||
+
|
||||
+ target.path = $$BINDIR
|
||||
+
|
||||
+ icon.files = applications/vokoscreenNG.png
|
||||
+ icon.path = $$DATADIR/icons/hicolor/256x256/apps/
|
||||
+
|
||||
+ desktop.files = applications/vokoscreenNG.desktop
|
||||
+ desktop.path = $$DATADIR/applications/
|
||||
+
|
||||
+ appdata.files = applications/vokoscreenNG.appdata.xml
|
||||
+ appdata.path = $$DATADIR/metainfo/
|
||||
+
|
||||
+ INSTALLS += target icon desktop appdata
|
||||
+}
|
||||
# ciscoOpenh264
|
||||
win32:include(ciscoOpenh264/ciscoOpenh264.pri)
|
||||
|
||||
-unix:include(wayland/wayland.pri)
|
||||
\ Pas de fin de ligne à la fin du fichier
|
||||
+unix:include(wayland/wayland.pri)
|
||||
+
|
||||
Loading…
Add table
Add a link
Reference in a new issue