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
83
pkgs/desktops/lxqt/lxqt-panel/default.nix
Normal file
83
pkgs/desktops/lxqt/lxqt-panel/default.nix
Normal file
|
|
@ -0,0 +1,83 @@
|
|||
{ lib
|
||||
, mkDerivation
|
||||
, fetchFromGitHub
|
||||
, cmake
|
||||
, pkg-config
|
||||
, alsa-lib
|
||||
, kguiaddons
|
||||
, kwindowsystem
|
||||
, libXdamage
|
||||
, libdbusmenu
|
||||
, liblxqt
|
||||
, libpulseaudio
|
||||
, libqtxdg
|
||||
, libstatgrab
|
||||
, libsysstat
|
||||
, lm_sensors
|
||||
, lxmenu-data
|
||||
, lxqt-build-tools
|
||||
, lxqt-globalkeys
|
||||
, lxqtUpdateScript
|
||||
, menu-cache
|
||||
, pcre
|
||||
, qtbase
|
||||
, qtsvg
|
||||
, qttools
|
||||
, qtx11extras
|
||||
, solid
|
||||
, xorg
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "lxqt-panel";
|
||||
version = "1.1.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "lxqt";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
sha256 = "w5/uS8kRb5yFUXd1NImWMXxx40YtzxMZMS87e9syb6A=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
lxqt-build-tools
|
||||
];
|
||||
|
||||
buildInputs = [
|
||||
alsa-lib
|
||||
kguiaddons
|
||||
kwindowsystem
|
||||
libXdamage
|
||||
libdbusmenu
|
||||
liblxqt
|
||||
libpulseaudio
|
||||
libqtxdg
|
||||
libstatgrab
|
||||
libsysstat
|
||||
lm_sensors
|
||||
lxmenu-data
|
||||
lxqt-globalkeys
|
||||
menu-cache
|
||||
pcre
|
||||
qtbase
|
||||
qtsvg
|
||||
qttools
|
||||
qtx11extras
|
||||
solid
|
||||
xorg.libXdmcp
|
||||
xorg.libXtst
|
||||
xorg.libpthreadstubs
|
||||
];
|
||||
|
||||
passthru.updateScript = lxqtUpdateScript { inherit pname version src; };
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/lxqt/lxqt-panel";
|
||||
description = "The LXQt desktop panel";
|
||||
license = licenses.lgpl21Plus;
|
||||
platforms = platforms.linux;
|
||||
maintainers = teams.lxqt.members;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue