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
26
pkgs/tools/video/swfmill/default.nix
Normal file
26
pkgs/tools/video/swfmill/default.nix
Normal file
|
|
@ -0,0 +1,26 @@
|
|||
{ lib, stdenv, fetchurl
|
||||
, pkg-config, libxslt, freetype, libpng, libxml2
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "swfmill";
|
||||
version = "0.3.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://swfmill.org/releases/swfmill-${version}.tar.gz";
|
||||
sha256 = "15mcpql448vvgsbxs7wd0vdk1ln6rdcpnif6i2zjm5l4xng55s7r";
|
||||
};
|
||||
|
||||
# Fixes build with GCC 6
|
||||
NIX_CFLAGS_COMPILE = "-std=c++03";
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ libxslt freetype libpng libxml2 ];
|
||||
|
||||
meta = {
|
||||
description = "An xml2swf and swf2xml processor with import functionalities";
|
||||
homepage = "http://swfmill.org";
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue