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/applications/editors/kdevelop5/kdevelop-pg-qt.nix
Normal file
33
pkgs/applications/editors/kdevelop5/kdevelop-pg-qt.nix
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
{ lib, stdenv, fetchurl, cmake, pkg-config, extra-cmake-modules, qtbase }:
|
||||
|
||||
let
|
||||
pname = "kdevelop-pg-qt";
|
||||
version = "2.2.1";
|
||||
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
name = "${pname}-${version}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/${pname}/${version}/src/${name}.tar.xz";
|
||||
sha256 = "0ay6m6j6zgrbcm48f14bass83bk4w5qnx76xihc05p69i9w32ff1";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config extra-cmake-modules ];
|
||||
|
||||
buildInputs = [ qtbase ];
|
||||
|
||||
dontWrapQtApps = true;
|
||||
|
||||
meta = with lib; {
|
||||
maintainers = [ maintainers.ambrop72 ];
|
||||
platforms = platforms.linux;
|
||||
description = "Parser-generator from KDevplatform";
|
||||
longDescription = ''
|
||||
KDevelop-PG-Qt is the parser-generator from KDevplatform.
|
||||
It is used for some KDevelop-languagesupport-plugins (Ruby, PHP, CSS...).
|
||||
'';
|
||||
homepage = "https://www.kdevelop.org";
|
||||
license = with lib.licenses; [ lgpl2Plus ];
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue