liferea: Format with nixpkgs-fmt
* Format with nixpkgs-fmt * Replace pkgconfig alias with pkg-config * Remove duplicate gsettings-desktop-schemas
This commit is contained in:
parent
86990d6007
commit
dfd6f3de19
@ -1,7 +1,25 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, intltool, python3Packages, wrapGAppsHook
|
{ stdenv
|
||||||
, glib, libxml2, libxslt, sqlite, libsoup , webkitgtk, json-glib, gst_all_1
|
, fetchurl
|
||||||
, libnotify, gtk3, gsettings-desktop-schemas, libpeas, dconf, librsvg
|
, pkg-config
|
||||||
, gobject-introspection, glib-networking
|
, intltool
|
||||||
|
, python3Packages
|
||||||
|
, wrapGAppsHook
|
||||||
|
, glib
|
||||||
|
, libxml2
|
||||||
|
, libxslt
|
||||||
|
, sqlite
|
||||||
|
, libsoup
|
||||||
|
, webkitgtk
|
||||||
|
, json-glib
|
||||||
|
, gst_all_1
|
||||||
|
, libnotify
|
||||||
|
, gtk3
|
||||||
|
, gsettings-desktop-schemas
|
||||||
|
, libpeas
|
||||||
|
, dconf
|
||||||
|
, librsvg
|
||||||
|
, gobject-introspection
|
||||||
|
, glib-networking
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
@ -13,17 +31,40 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "03pr1gmiv5y0i92bkhcxr8s311ll91chz19wb96jkixx32xav91d";
|
sha256 = "03pr1gmiv5y0i92bkhcxr8s311ll91chz19wb96jkixx32xav91d";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ wrapGAppsHook python3Packages.wrapPython intltool pkgconfig ];
|
nativeBuildInputs = [
|
||||||
|
wrapGAppsHook
|
||||||
|
python3Packages.wrapPython
|
||||||
|
intltool
|
||||||
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
glib gtk3 webkitgtk libxml2 libxslt sqlite libsoup gsettings-desktop-schemas
|
glib
|
||||||
libpeas gsettings-desktop-schemas json-glib dconf gobject-introspection
|
gtk3
|
||||||
librsvg glib-networking libnotify
|
webkitgtk
|
||||||
|
libxml2
|
||||||
|
libxslt
|
||||||
|
sqlite
|
||||||
|
libsoup
|
||||||
|
libpeas
|
||||||
|
gsettings-desktop-schemas
|
||||||
|
json-glib
|
||||||
|
dconf
|
||||||
|
gobject-introspection
|
||||||
|
librsvg
|
||||||
|
glib-networking
|
||||||
|
libnotify
|
||||||
] ++ (with gst_all_1; [
|
] ++ (with gst_all_1; [
|
||||||
gstreamer gst-plugins-base gst-plugins-good gst-plugins-bad
|
gstreamer
|
||||||
|
gst-plugins-base
|
||||||
|
gst-plugins-good
|
||||||
|
gst-plugins-bad
|
||||||
]);
|
]);
|
||||||
|
|
||||||
pythonPath = with python3Packages; [ pygobject3 pycairo ];
|
pythonPath = with python3Packages; [
|
||||||
|
pygobject3
|
||||||
|
pycairo
|
||||||
|
];
|
||||||
|
|
||||||
preFixup = ''
|
preFixup = ''
|
||||||
buildPythonPath "$out $pythonPath"
|
buildPythonPath "$out $pythonPath"
|
||||||
|
Loading…
Reference in New Issue
Block a user