mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 00:12:56 +00:00
grilo: 0.3.0 -> 0.3.1
This commit is contained in:
parent
1ef2766623
commit
a6be3de872
@ -1,14 +1,14 @@
|
||||
{ stdenv, fetchurl, pkgconfig, file, intltool, glib
|
||||
, libxml2, gnome3, gobjectIntrospection, libsoup }:
|
||||
, libxml2, gnome3, gobjectIntrospection, libsoup, python3Packages }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
major = "0.3";
|
||||
minor = "0";
|
||||
major = "0.3"; # if you change this, also change ./setup-hook.sh
|
||||
minor = "1";
|
||||
name = "grilo-${major}.${minor}";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/grilo/${major}/${name}.tar.xz";
|
||||
sha256 = "0q5wcvnckpfks48hy0gvlfdmvqm67vnblm3912rssmkgc1ysil8z";
|
||||
sha256 = "0k6d8drgh7inbpxqfa9m9dm4vrhfb9ifi5b88fn8q2ljqwfwdggb";
|
||||
};
|
||||
|
||||
setupHook = ./setup-hook.sh;
|
||||
@ -23,7 +23,9 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
buildInputs = [ pkgconfig file intltool glib libxml2 libsoup
|
||||
gnome3.totem-pl-parser gobjectIntrospection ];
|
||||
gnome3.totem-pl-parser ];
|
||||
|
||||
propagatedBuildInputs = [ python3Packages.pygobject3 gobjectIntrospection ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
homepage = https://wiki.gnome.org/action/show/Projects/Grilo;
|
||||
|
@ -1,6 +1,6 @@
|
||||
make_grilo_find_plugins() {
|
||||
if [ -d "$1"/lib/grilo-0.2 ]; then
|
||||
addToSearchPath GRL_PLUGIN_PATH "$1/lib/grilo-0.2"
|
||||
if [ -d "$1"/lib/grilo-0.3 ]; then
|
||||
addToSearchPath GRL_PLUGIN_PATH "$1/lib/grilo-0.3"
|
||||
fi
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user