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
22
pkgs/applications/video/quvi/scripts.nix
Normal file
22
pkgs/applications/video/quvi/scripts.nix
Normal file
|
|
@ -0,0 +1,22 @@
|
|||
{lib, stdenv, fetchurl, pkg-config}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "quvi-scripts";
|
||||
version="0.9.20131130";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/quvi/libquvi-scripts-${version}.tar.xz";
|
||||
sha256 = "1qvp6z5k1qgcys7vf7jd6fm0g07xixmciwj14ypn1kqhmjgizwhp";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
||||
meta = {
|
||||
description = "Web video downloader";
|
||||
homepage = "http://quvi.sf.net";
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ ];
|
||||
broken = true; # missing glibc-2.34 support, no upstream activity
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue