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
24
pkgs/development/libraries/libwpd/0.8.nix
Normal file
24
pkgs/development/libraries/libwpd/0.8.nix
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
{ lib, stdenv, fetchurl, pkg-config, glib, libgsf, libxml2, bzip2 }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libwpd";
|
||||
version = "0.8.14";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libwpd/libwpd-${version}.tar.gz";
|
||||
sha256 = "1syli6i5ma10cwzpa61a18pyjmianjwsf6pvmvzsh5md6yk4yx01";
|
||||
};
|
||||
|
||||
patches = [ ./gcc-0.8.patch ];
|
||||
|
||||
buildInputs = [ glib libgsf libxml2 ];
|
||||
|
||||
nativeBuildInputs = [ pkg-config bzip2 ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Library for importing WordPerfect documents";
|
||||
homepage = "http://libwpd.sourceforge.net";
|
||||
license = with licenses; [ lgpl21 mpl20 ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue