nixpkgs/pkgs/applications/video/dvdstyler/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

133 lines
3.4 KiB
Nix
Raw Normal View History

2021-04-27 17:45:13 +03:00
{ lib
, stdenv
, fetchurl
, bison
, cdrtools
, docbook_xml_dtd_412
, docbook-xsl-nons
2021-04-27 17:45:13 +03:00
, dvdauthor
, dvdplusrwtools
, ffmpeg
2021-04-27 17:45:13 +03:00
, flex
2017-03-05 18:42:31 +03:00
, fontconfig
2021-04-27 17:45:13 +03:00
, gettext
, glib
, gobject-introspection
, libexif
, libjpeg
2021-04-27 17:45:13 +03:00
, pkg-config
, wrapGAppsHook
2023-01-13 20:31:45 +03:00
, wxGTK32
2021-04-27 17:45:13 +03:00
, wxSVG
, xine-ui
, xmlto
, zip
2017-03-05 18:42:31 +03:00
, dvdisasterSupport ? true, dvdisaster ? null
, thumbnailSupport ? true, libgnomeui ? null
, udevSupport ? true, udev ? null
2017-03-05 18:42:31 +03:00
, dbusSupport ? true, dbus ? null
2021-04-27 17:45:13 +03:00
}:
2017-03-05 18:42:31 +03:00
2021-04-27 17:45:13 +03:00
let
inherit (lib) optionals makeBinPath;
in stdenv.mkDerivation rec {
pname = "dvdstyler";
2023-01-13 20:31:45 +03:00
version = "3.2.1";
2017-03-05 18:42:31 +03:00
src = fetchurl {
2021-04-27 17:45:13 +03:00
url = "mirror://sourceforge/project/dvdstyler/dvdstyler/${version}/DVDStyler-${version}.tar.bz2";
2023-01-13 20:31:45 +03:00
sha256 = "sha256-C7M0hzn0yTCXRUuBTss6WPa6zo8DD0Fhmp/ur7R0dVg=";
2017-03-05 18:42:31 +03:00
};
2023-01-13 20:31:45 +03:00
patches = [
# https://sourceforge.net/p/dvdstyler/DVDStyler/ci/679fa8dc6ac7657775eda9d7b0ed9da9d069aeec/
./wxgtk32.patch
];
2021-04-27 17:45:13 +03:00
nativeBuildInputs = [
bison
docbook_xml_dtd_412
docbook-xsl-nons
flex
gettext
gobject-introspection
2021-04-27 17:45:13 +03:00
pkg-config
wrapGAppsHook
xmlto
zip
2021-04-27 17:45:13 +03:00
];
buildInputs = [
cdrtools
dvdauthor
dvdplusrwtools
ffmpeg
2021-04-27 17:45:13 +03:00
fontconfig
glib
libexif
libjpeg
2021-04-27 17:45:13 +03:00
wxSVG
2023-01-13 20:31:45 +03:00
wxGTK32
2021-04-27 17:45:13 +03:00
xine-ui
]
2017-03-05 18:42:31 +03:00
++ optionals dvdisasterSupport [ dvdisaster ]
++ optionals udevSupport [ udev ]
2017-03-05 18:42:31 +03:00
++ optionals dbusSupport [ dbus ]
++ optionals thumbnailSupport [ libgnomeui ];
enableParallelBuilding = true;
2017-03-05 18:42:31 +03:00
preFixup = let
binPath = makeBinPath ([
2021-04-27 17:45:13 +03:00
cdrtools
dvdauthor
dvdplusrwtools
] ++ optionals dvdisasterSupport [ dvdisaster ]);
in
2021-04-27 17:45:13 +03:00
''
gappsWrapperArgs+=(
--prefix PATH : "${binPath}"
)
'';
2017-03-05 18:42:31 +03:00
meta = with lib; {
2021-04-27 17:45:13 +03:00
homepage = "https://www.dvdstyler.org/";
2017-03-05 18:42:31 +03:00
description = "A DVD authoring software";
longDescription = ''
2021-04-27 17:45:13 +03:00
DVDStyler is a cross-platform free DVD authoring application for the
creation of professional-looking DVDs. It allows not only burning of video
files on DVD that can be played practically on any standalone DVD player,
but also creation of individually designed DVD menus. It is Open Source
Software and is completely free.
Some of its features include:
2017-03-05 18:42:31 +03:00
2021-04-27 17:45:13 +03:00
- create and burn DVD video with interactive menus
- design your own DVD menu or select one from the list of ready to use menu
templates
- create photo slideshow
- add multiple subtitle and audio tracks
- support of AVI, MOV, MP4, MPEG, OGG, WMV and other file formats
- support of MPEG-2, MPEG-4, DivX, Xvid, MP2, MP3, AC-3 and other audio and
video formats
- support of multi-core processor
- use MPEG and VOB files without reencoding
- put files with different audio/video format on one DVD (support of
titleset)
- user-friendly interface with support of drag & drop
- flexible menu creation on the basis of scalable vector graphic
- import of image file for background
- place buttons, text, images and other graphic objects anywhere on the menu
screen
- change the font/color and other parameters of buttons and graphic objects
- scale any button or graphic object
- copy any menu object or whole menu
- customize navigation using DVD scripting
2017-03-05 18:42:31 +03:00
'';
2021-04-27 17:45:13 +03:00
license = licenses.gpl2Plus;
2017-03-05 18:42:31 +03:00
maintainers = with maintainers; [ AndersonTorres ];
platforms = with platforms; linux;
};
}