pitivi: clean up
* format with nixpkgs-fmt * use pkg-config instead of pkgconfig alias * reorder attributes * move version inside the mkDerivation
This commit is contained in:
parent
1a68e21d47
commit
34c2ad1474
@ -1,12 +1,25 @@
|
|||||||
{ stdenv, fetchFromGitHub, fetchurl, pkgconfig, intltool, itstool, python3, wrapGAppsHook
|
{ stdenv
|
||||||
, python3Packages, gst_all_1, gtk3
|
, fetchFromGitHub
|
||||||
, gobject-introspection, librsvg, gnome3, libnotify, gsound
|
, fetchurl
|
||||||
, meson, ninja, gsettings-desktop-schemas
|
, pkg-config
|
||||||
|
, intltool
|
||||||
|
, itstool
|
||||||
|
, python3
|
||||||
|
, wrapGAppsHook
|
||||||
|
, python3Packages
|
||||||
|
, gst_all_1
|
||||||
|
, gtk3
|
||||||
|
, gobject-introspection
|
||||||
|
, librsvg
|
||||||
|
, gnome3
|
||||||
|
, libnotify
|
||||||
|
, gsound
|
||||||
|
, meson
|
||||||
|
, ninja
|
||||||
|
, gsettings-desktop-schemas
|
||||||
}:
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
version = "0.999";
|
|
||||||
|
|
||||||
# gst-transcoder will eventually be merged with gstreamer (according to
|
# gst-transcoder will eventually be merged with gstreamer (according to
|
||||||
# gst-transcoder 1.8.0 release notes). For now the only user is pitivi so we
|
# gst-transcoder 1.8.0 release notes). For now the only user is pitivi so we
|
||||||
# don't bother exposing the package to all of nixpkgs.
|
# don't bother exposing the package to all of nixpkgs.
|
||||||
@ -19,20 +32,30 @@ let
|
|||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "16skiz9akavssii529v9nr8zd54w43livc14khdyzv164djg9q8f";
|
sha256 = "16skiz9akavssii529v9nr8zd54w43livc14khdyzv164djg9q8f";
|
||||||
};
|
};
|
||||||
nativeBuildInputs = [ pkgconfig meson ninja gobject-introspection python3 ];
|
nativeBuildInputs = [
|
||||||
buildInputs = with gst_all_1; [ gstreamer gst-plugins-base ];
|
pkg-config
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
gobject-introspection
|
||||||
|
python3
|
||||||
|
];
|
||||||
|
buildInputs = with gst_all_1; [
|
||||||
|
gstreamer
|
||||||
|
gst-plugins-base
|
||||||
|
];
|
||||||
};
|
};
|
||||||
|
|
||||||
in python3Packages.buildPythonApplication rec {
|
in python3Packages.buildPythonApplication rec {
|
||||||
name = "pitivi-${version}";
|
pname = "pitivi";
|
||||||
|
version = "0.999";
|
||||||
src = fetchurl {
|
|
||||||
url = "mirror://gnome/sources/pitivi/${stdenv.lib.versions.majorMinor version}/${name}.tar.xz";
|
|
||||||
sha256 = "0mxp2p4gg976fp1vj3rb5rmpl5mqfzncm9vw2719irl32f1qlvyb";
|
|
||||||
};
|
|
||||||
|
|
||||||
format = "other";
|
format = "other";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://gnome/sources/pitivi/${stdenv.lib.versions.majorMinor version}/${pname}-${version}.tar.xz";
|
||||||
|
sha256 = "0mxp2p4gg976fp1vj3rb5rmpl5mqfzncm9vw2719irl32f1qlvyb";
|
||||||
|
};
|
||||||
|
|
||||||
patches = [
|
patches = [
|
||||||
# By default, the build picks up environment variables like PYTHONPATH
|
# By default, the build picks up environment variables like PYTHONPATH
|
||||||
# and saves them to the generated binary. This would make the build-time
|
# and saves them to the generated binary. This would make the build-time
|
||||||
@ -40,25 +63,51 @@ in python3Packages.buildPythonApplication rec {
|
|||||||
./prevent-closure-contamination.patch
|
./prevent-closure-contamination.patch
|
||||||
];
|
];
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
meson
|
||||||
|
ninja
|
||||||
|
pkg-config
|
||||||
|
intltool
|
||||||
|
itstool
|
||||||
|
python3
|
||||||
|
wrapGAppsHook
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
gobject-introspection
|
||||||
|
gtk3
|
||||||
|
librsvg
|
||||||
|
gnome3.gnome-desktop
|
||||||
|
gsound
|
||||||
|
gnome3.adwaita-icon-theme
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
libnotify
|
||||||
|
gst-transcoder
|
||||||
|
] ++ (with gst_all_1; [
|
||||||
|
gstreamer
|
||||||
|
gst-editing-services
|
||||||
|
gst-plugins-base
|
||||||
|
(gst-plugins-good.override { gtkSupport = true; })
|
||||||
|
gst-plugins-bad
|
||||||
|
gst-plugins-ugly
|
||||||
|
gst-libav
|
||||||
|
gst-validate
|
||||||
|
]);
|
||||||
|
|
||||||
|
pythonPath = with python3Packages; [
|
||||||
|
pygobject3
|
||||||
|
gst-python
|
||||||
|
pyxdg
|
||||||
|
numpy
|
||||||
|
pycairo
|
||||||
|
matplotlib
|
||||||
|
dbus-python
|
||||||
|
];
|
||||||
|
|
||||||
postPatch = ''
|
postPatch = ''
|
||||||
patchShebangs ./getenvvar.py
|
patchShebangs ./getenvvar.py
|
||||||
'';
|
'';
|
||||||
|
|
||||||
nativeBuildInputs = [ meson ninja pkgconfig intltool itstool python3 wrapGAppsHook ];
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
gobject-introspection gtk3 librsvg gnome3.gnome-desktop gsound
|
|
||||||
gnome3.adwaita-icon-theme
|
|
||||||
gsettings-desktop-schemas libnotify
|
|
||||||
gst-transcoder
|
|
||||||
] ++ (with gst_all_1; [
|
|
||||||
gstreamer gst-editing-services
|
|
||||||
gst-plugins-base (gst-plugins-good.override { gtkSupport = true; })
|
|
||||||
gst-plugins-bad gst-plugins-ugly gst-libav gst-validate
|
|
||||||
]);
|
|
||||||
|
|
||||||
pythonPath = with python3Packages; [ pygobject3 gst-python pyxdg numpy pycairo matplotlib dbus-python ];
|
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
updateScript = gnome3.updateScript {
|
updateScript = gnome3.updateScript {
|
||||||
packageName = "pitivi";
|
packageName = "pitivi";
|
||||||
|
Loading…
x
Reference in New Issue
Block a user