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
27
pkgs/applications/misc/qolibri/default.nix
Normal file
27
pkgs/applications/misc/qolibri/default.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{ mkDerivation, lib, fetchFromGitHub, pkg-config, cmake, libeb, lzo
|
||||
, qtbase, qtmultimedia, qttools, qtwebengine }:
|
||||
|
||||
mkDerivation {
|
||||
pname = "qolibri";
|
||||
version = "2019-07-22";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ludios";
|
||||
repo = "qolibri";
|
||||
rev = "b58f9838d39300cba444eba725a369181c5d746b";
|
||||
sha256 = "0kcc6dvbcmq9y7hk8mp23pydiaqz6f0clg64d1f2y04ppphmah42";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config cmake ];
|
||||
buildInputs = [
|
||||
libeb lzo qtbase qtmultimedia qttools qtwebengine
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "https://github.com/ludios/qolibri";
|
||||
description = "EPWING reader for viewing Japanese dictionaries";
|
||||
platforms = platforms.linux;
|
||||
maintainers = with maintainers; [ ];
|
||||
license = licenses.gpl2;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue