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
33
pkgs/development/libraries/nemo-qml-plugin-dbus/default.nix
Normal file
33
pkgs/development/libraries/nemo-qml-plugin-dbus/default.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ mkDerivation, lib, fetchFromGitLab, qmake, qtbase }:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "nemo-qml-plugin-dbus";
|
||||
version = "2.1.24";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
domain = "git.sailfishos.org";
|
||||
owner = "mer-core";
|
||||
repo = "nemo-qml-plugin-dbus";
|
||||
rev = version;
|
||||
sha256 = "1ilg929456d3k0xkvxa5r4k7i4kkw9i8kgah5xx1yq0d9wka0l77";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ qmake ];
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace dbus.pro --replace ' tests' ""
|
||||
substituteInPlace src/nemo-dbus/nemo-dbus.pro \
|
||||
--replace /usr $out \
|
||||
--replace '$$[QT_INSTALL_LIBS]' $out'/lib'
|
||||
substituteInPlace src/plugin/plugin.pro \
|
||||
--replace '$$[QT_INSTALL_QML]' $out'/${qtbase.qtQmlPrefix}'
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Nemo DBus plugin for qml";
|
||||
homepage = "https://git.sailfishos.org/mer-core/nemo-qml-plugin-dbus/";
|
||||
license = licenses.lgpl2Only;
|
||||
maintainers = [ maintainers.Thra11 ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue