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/development/libraries/libdvdread/4.9.9.nix
Normal file
27
pkgs/development/libraries/libdvdread/4.9.9.nix
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
{lib, stdenv, fetchurl, libdvdcss}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libdvdread";
|
||||
version = "4.9.9";
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://dvdnav.mplayerhq.hu/releases/libdvdread-${version}.tar.xz";
|
||||
sha256 = "d91275471ef69d488b05cf15c60e1cd65e17648bfc692b405787419f47ca424a";
|
||||
};
|
||||
|
||||
buildInputs = [libdvdcss];
|
||||
|
||||
NIX_LDFLAGS = "-ldvdcss";
|
||||
|
||||
postInstall = ''
|
||||
ln -s dvdread $out/include/libdvdread
|
||||
'';
|
||||
|
||||
meta = {
|
||||
homepage = "http://dvdnav.mplayerhq.hu/";
|
||||
description = "A library for reading DVDs";
|
||||
license = lib.licenses.gpl2;
|
||||
maintainers = [ lib.maintainers.wmertens ];
|
||||
platforms = lib.platforms.linux;
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue