mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
Adding dvswitch: a digital video mixer intended for interactive live mixing of several incoming DV video streams, typically used for recording conferences
svn path=/nixpkgs/trunk/; revision=31446
This commit is contained in:
parent
786a5c083f
commit
d9d74208b5
29
pkgs/applications/video/dvswitch/default.nix
Normal file
29
pkgs/applications/video/dvswitch/default.nix
Normal file
@ -0,0 +1,29 @@
|
|||||||
|
{ stdenv, fetchurl, alsaLib, boost, cmake, gtkmm, libXau, libXdmcp,
|
||||||
|
libXv, libav, pixman, libpthreadstubs, pkgconfig }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "dvswitch-${version}";
|
||||||
|
version = "0.8.3.6";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://alioth.debian.org/frs/download.php/3615/${name}.tar.gz";
|
||||||
|
sha256 = "7bd196389f9913ae08e12a29e168d79324c508bb545eab114df77b0375cd87f0";
|
||||||
|
};
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
alsaLib boost cmake gtkmm libXau libXdmcp libXv libav
|
||||||
|
libpthreadstubs pixman pkgconfig
|
||||||
|
];
|
||||||
|
|
||||||
|
installPhase = "
|
||||||
|
ensureDir $out
|
||||||
|
cp src/dv* $out/
|
||||||
|
";
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "digital video mixer intended for interactive live mixing of several incoming DV video streams";
|
||||||
|
homepage = "http://dvswitch.alioth.debian.org";
|
||||||
|
license = licenses.gpl2Plus;
|
||||||
|
maintainers = [ maintainers.goibhniu ];
|
||||||
|
};
|
||||||
|
}
|
@ -6525,6 +6525,11 @@ let
|
|||||||
|
|
||||||
dvdauthor = callPackage ../applications/video/dvdauthor { };
|
dvdauthor = callPackage ../applications/video/dvdauthor { };
|
||||||
|
|
||||||
|
dvswitch = callPackage ../applications/video/dvswitch {
|
||||||
|
inherit (gtkLibs) gtkmm;
|
||||||
|
inherit (xlibs) libXau libXdmcp libXv libpthreadstubs pixman;
|
||||||
|
};
|
||||||
|
|
||||||
dwm = callPackage ../applications/window-managers/dwm {
|
dwm = callPackage ../applications/window-managers/dwm {
|
||||||
patches = getConfig [ "dwm" "patches" ] [];
|
patches = getConfig [ "dwm" "patches" ] [];
|
||||||
};
|
};
|
||||||
|
Loading…
Reference in New Issue
Block a user