libdv: more flags
svn path=/nixpkgs/branches/stdenv-updates/; revision=10516
This commit is contained in:
parent
2d2aef01a5
commit
7c1e5d4200
@ -1,15 +1,21 @@
|
|||||||
args:
|
args:
|
||||||
let edf = args.lib.enableDisableFeature; in
|
let edf = args.lib.enableDisableFeature; in
|
||||||
( args.mkDerivationByConfiguration {
|
( args.mkDerivationByConfiguration {
|
||||||
flagConfig = { }
|
flagConfig = {
|
||||||
|
mandatory = { buildInputs = [ "popt" "pkgconfig" ]; };
|
||||||
|
libX11 = { cfgOption = "--with-x11"; buildInputs = "libX11"; };
|
||||||
|
no_libX11 = { cfgOption = "--without-x11"; };
|
||||||
|
}
|
||||||
# TODO! implement flags
|
# TODO! implement flags
|
||||||
# I want to get kino and cinelerra working. That's why I don't spend more time on this now
|
# I want to get kino and cinelerra working. That's why I don't spend more time on this now
|
||||||
// edf "libtool_lock" "libtool_lock" { } #avoid locking (might break parallel builds)
|
// edf "libtool_lock" "libtool_lock" { } #avoid locking (might break parallel builds)
|
||||||
// edf "asm" "asm" { } #disable use of architecture specific assembly code
|
// edf "asm" "asm" { } #disable use of architecture specific assembly code
|
||||||
// edf "sdl" "sdl" { } #enable use of SDL for display
|
// edf "SDL" "sdl" { buildInputs = "SDL"; } #enable use of SDL for display
|
||||||
// edf "gtk" "gtk" { } #disable use of gtk for display
|
// edf "gtk" "gtk" { buildInputs = "gtk"; } #disable use of gtk for display
|
||||||
// edf "xv" "xv" { } #disable use of XVideo extension for display
|
// edf "libXv" "xv" { buildInputs = "libXv"; } #disable use of XVideo extension for display
|
||||||
// edf "gprof" "gprof" { } #enable compiler options for gprof profiling
|
// edf "gprof" "gprof" { } #enable compiler options for gprof profiling
|
||||||
|
// edf "shared" "shared" { }
|
||||||
|
// edf "static" "static" { }
|
||||||
;
|
;
|
||||||
|
|
||||||
extraAttrs = co : {
|
extraAttrs = co : {
|
||||||
@ -20,11 +26,13 @@ let edf = args.lib.enableDisableFeature; in
|
|||||||
sha256 = "1fl96f2xh2slkv1i1ix7kqk576a0ak1d33cylm0mbhm96d0761d3";
|
sha256 = "1fl96f2xh2slkv1i1ix7kqk576a0ak1d33cylm0mbhm96d0761d3";
|
||||||
};
|
};
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards";
|
description = "software decoder for DV format video, as defined by the IEC 61834 and SMPTE 314M standards";
|
||||||
homepage = http://sourceforge.net/projects/libdv/;
|
homepage = http://sourceforge.net/projects/libdv/;
|
||||||
# you can choose one of the following licenses:
|
# you can choose one of the following licenses:
|
||||||
license = [];
|
license = [];
|
||||||
|
};
|
||||||
};
|
};
|
||||||
};
|
optionals = [ "SDL" "gtk" "libXv" "libX11" ];
|
||||||
|
defaults = [ "shared" "libtool_lock" ];
|
||||||
} ) args
|
} ) args
|
||||||
|
@ -2154,7 +2154,8 @@ rec {
|
|||||||
} null;
|
} null;
|
||||||
|
|
||||||
libdv = import ../development/libraries/libdv {
|
libdv = import ../development/libraries/libdv {
|
||||||
inherit fetchurl stdenv lib mkDerivationByConfiguration;
|
inherit fetchurl stdenv lib mkDerivationByConfiguration SDL popt pkgconfig;
|
||||||
|
inherit (xorg) libXv libX11;
|
||||||
};
|
};
|
||||||
|
|
||||||
libdrm = import ../development/libraries/libdrm {
|
libdrm = import ../development/libraries/libdrm {
|
||||||
|
Loading…
Reference in New Issue
Block a user