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
32
pkgs/development/libraries/alkimia/default.nix
Normal file
32
pkgs/development/libraries/alkimia/default.nix
Normal file
|
|
@ -0,0 +1,32 @@
|
|||
{ mkDerivation, fetchurl, lib
|
||||
, extra-cmake-modules, doxygen, graphviz, qtbase, qtwebkit, mpir
|
||||
, kdelibs4support, plasma-framework, knewstuff, kpackage
|
||||
}:
|
||||
|
||||
mkDerivation rec {
|
||||
pname = "alkimia";
|
||||
version = "8.1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://kde/stable/alkimia/${version}/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-kWgHNScHsEkM3ZymVoLv9zsAylIwKb2m/nonSaG8knw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ extra-cmake-modules doxygen graphviz ];
|
||||
|
||||
buildInputs = [ qtbase qtwebkit kdelibs4support plasma-framework knewstuff kpackage ];
|
||||
propagatedBuildInputs = [ mpir ];
|
||||
|
||||
meta = {
|
||||
description = "Library used by KDE finance applications";
|
||||
longDescription = ''
|
||||
Alkimia is the infrastructure for common storage and business
|
||||
logic that will be used by all financial applications in KDE.
|
||||
|
||||
The target is to share financial related information over
|
||||
application bounderies.
|
||||
'';
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
platforms = qtbase.meta.platforms;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue