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

54 lines
1.5 KiB
Nix
Raw Normal View History

2021-05-18 07:47:42 +00:00
{ lib, fetchFromGitLab, python3Packages, ffmpeg, mplayer, vcdimager, cdrkit, dvdauthor
2019-05-22 11:03:39 +00:00
, gtk3, gettext, wrapGAppsHook, gdk-pixbuf, gobject-introspection }:
2014-12-22 01:43:33 +00:00
let
inherit (python3Packages) dbus-python buildPythonApplication pygobject3 urllib3 setuptools;
in buildPythonApplication rec {
pname = "devede";
version = "4.16.0";
2014-12-22 01:43:33 +00:00
namePrefix = "";
src = fetchFromGitLab {
2017-03-05 13:48:22 +00:00
owner = "rastersoft";
repo = "devedeng";
rev = version;
sha256 = "1xb7acjphvn4ya8fgjsvag5gzi9a6c2famfl0ffr8nhb9y8ig9mg";
2014-12-22 01:43:33 +00:00
};
2019-05-17 01:31:16 +00:00
# Temporary fix
# See https://github.com/NixOS/nixpkgs/issues/61578
# and https://github.com/NixOS/nixpkgs/issues/56943
strictDeps = false;
2017-03-05 13:48:22 +00:00
nativeBuildInputs = [
gettext wrapGAppsHook
2019-05-17 01:31:16 +00:00
# Temporary fix
# See https://github.com/NixOS/nixpkgs/issues/61578
# and https://github.com/NixOS/nixpkgs/issues/56943
gobject-introspection
2017-03-05 13:48:22 +00:00
];
2014-12-22 01:43:33 +00:00
2017-03-05 13:48:22 +00:00
buildInputs = [
2021-05-18 07:47:42 +00:00
ffmpeg
2017-03-05 13:48:22 +00:00
];
propagatedBuildInputs = [
2021-05-18 07:47:42 +00:00
gtk3 pygobject3 gdk-pixbuf dbus-python ffmpeg mplayer dvdauthor vcdimager cdrkit urllib3 setuptools
2017-03-05 13:48:22 +00:00
];
2014-12-22 01:43:33 +00:00
postPatch = ''
2017-03-05 13:48:22 +00:00
substituteInPlace setup.py --replace "'/usr'," ""
substituteInPlace src/devedeng/configuration_data.py \
--replace "/usr/share" "$out/share" \
--replace "/usr/local/share" "$out/share"
2014-12-22 01:43:33 +00:00
'';
meta = with lib; {
2014-12-22 01:43:33 +00:00
description = "DVD Creator for Linux";
homepage = "http://www.rastersoft.com/programas/devede.html";
2014-12-22 01:43:33 +00:00
license = licenses.gpl3;
maintainers = [ maintainers.bdimcheff ];
};
}