mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-05-01 08:27:03 +00:00
grilo: enable grl-net
This commit is contained in:
parent
f6159b9095
commit
0f74c36e3b
1 changed files with 6 additions and 4 deletions
|
@ -1,4 +1,5 @@
|
||||||
{ stdenv, fetchurl, pkgconfig, file, intltool, glib, libxml2, gnome3, gobjectIntrospection }:
|
{ stdenv, fetchurl, pkgconfig, file, intltool, glib
|
||||||
|
, libxml2, gnome3, gobjectIntrospection, libsoup }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "grilo-0.2.10";
|
name = "grilo-0.2.10";
|
||||||
|
@ -8,16 +9,17 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "559a2470fe541b0090bcfdfac7a33e92dba967727bbab6d0eca70e5636a77b25";
|
sha256 = "559a2470fe541b0090bcfdfac7a33e92dba967727bbab6d0eca70e5636a77b25";
|
||||||
};
|
};
|
||||||
|
|
||||||
configureFlags = [ "--enable-grl-pls" ];
|
configureFlags = [ "--enable-grl-pls" "--enable-grl-net" ];
|
||||||
|
|
||||||
preConfigure = ''
|
preConfigure = ''
|
||||||
for f in src/Makefile.in libs/pls/Makefile.in; do
|
for f in src/Makefile.in libs/pls/Makefile.in libs/net/Makefile.in; do
|
||||||
substituteInPlace $f --replace @INTROSPECTION_GIRDIR@ "$out/share/gir-1.0/"
|
substituteInPlace $f --replace @INTROSPECTION_GIRDIR@ "$out/share/gir-1.0/"
|
||||||
substituteInPlace $f --replace @INTROSPECTION_TYPELIBDIR@ "$out/lib/girepository-1.0"
|
substituteInPlace $f --replace @INTROSPECTION_TYPELIBDIR@ "$out/lib/girepository-1.0"
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
|
||||||
buildInputs = [ pkgconfig file intltool glib libxml2 gnome3.totem-pl-parser gobjectIntrospection ];
|
buildInputs = [ pkgconfig file intltool glib libxml2 libsoup
|
||||||
|
gnome3.totem-pl-parser gobjectIntrospection ];
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
homepage = https://wiki.gnome.org/action/show/Projects/Grilo;
|
homepage = https://wiki.gnome.org/action/show/Projects/Grilo;
|
||||||
|
|
Loading…
Add table
Reference in a new issue