70fee5da11
The evaluation of liferea causes an error: error: assertion failed at `/tmp/nix-build-nixpkgs-tarball-1.0pre28992_1628c03.drv-0/git-export/pkgs/desktops/gnome-2/desktop/libgweather/default.nix:4:1' Why this happens is a mystery, since liferea doesn't depend on libgweather. The problem can be reproduced by evaluating: builtins.toXML (import <nixpkgs> { system = "x86_64-darwin"; }).liferea It seems to have something to do with builderDefs magic in webkit_gtk2. http://hydra.nixos.org/build/6039089
28 lines
763 B
Nix
28 lines
763 B
Nix
{ stdenv, fetchurl, pkgconfig, intltool, glib, gtk2, gnome2 /*just GConf*/
|
|
, libsoup, libunique, libxslt, webkit_gtk2, json_glib
|
|
, libnotify /*optional*/ }:
|
|
|
|
let version = "1.8.15";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "liferea-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/liferea/Liferea%20Stable/${version}/${name}.tar.bz2";
|
|
sha256 = "12hhdl5biwcvr9ds7pdhhvlp4vggjix6xm4z5pnfaz53ai2dnc99";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgconfig intltool gtk2 gnome2.GConf
|
|
libsoup libunique libxslt webkit_gtk2 json_glib
|
|
libnotify
|
|
];
|
|
|
|
meta = {
|
|
description = "A GTK-based news feed agregator";
|
|
homepage = http://lzone.de/liferea/;
|
|
maintainers = [ stdenv.lib.maintainers.vcunat ];
|
|
platforms = stdenv.lib.platforms.linux;
|
|
};
|
|
}
|