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
31
pkgs/development/libraries/libvisio/default.nix
Normal file
31
pkgs/development/libraries/libvisio/default.nix
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
{ lib, stdenv, fetchurl, boost, libwpd, libwpg, pkg-config, zlib, gperf
|
||||
, librevenge, libxml2, icu, perl, cppunit, doxygen
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libvisio";
|
||||
version = "0.1.7";
|
||||
|
||||
outputs = [ "out" "bin" "dev" "doc" ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://dev-www.libreoffice.org/src/libvisio/${pname}-${version}.tar.xz";
|
||||
sha256 = "0k7adcbbf27l7n453cca1m6s9yj6qvb5j6bsg2db09ybf3w8vbwg";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config cppunit doxygen ];
|
||||
buildInputs = [ boost libwpd libwpg zlib gperf librevenge libxml2 icu perl ];
|
||||
|
||||
configureFlags = [
|
||||
"--disable-werror"
|
||||
];
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A library providing ability to interpret and import visio diagrams into various applications";
|
||||
homepage = "https://wiki.documentfoundation.org/DLP/Libraries/libvisio";
|
||||
license = licenses.mpl20;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue