mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 01:13:05 +00:00
applications/networking/p2p/transmission: Updated to 2.31.
svn path=/nixpkgs/trunk/; revision=27433
This commit is contained in:
parent
a4a6c40b2c
commit
2daeebaaec
@ -1,16 +1,21 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, openssl, curl, intltool, libevent, gtkClient ? true, gtk }:
|
{ stdenv, fetchurl, pkgconfig, openssl, curl, intltool, libevent, gtkClient ? true, gtk }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "transmission-2.13";
|
name = "transmission-2.31";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://download.transmissionbt.com/files/${name}.tar.bz2";
|
url = "http://download.transmissionbt.com/files/${name}.tar.bz2";
|
||||||
sha256 = "18mpxr2l56bcl0vshwv5zb7l1xvpf77vbb6kd6qidjids6znqikk";
|
sha256 = "0z0npasbrbii5qnjyk31v0kfr04kwm57dmnl2542bpx615q212zk";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig openssl curl intltool libevent ] ++ stdenv.lib.optional gtkClient gtk;
|
buildInputs = [ pkgconfig openssl curl intltool libevent ] ++
|
||||||
|
stdenv.lib.optional gtkClient gtk;
|
||||||
|
|
||||||
configureFlags = if gtkClient then "--enable-gtk" else "--disable-gtk";
|
configureFlags = if gtkClient then "--enable-gtk" else "--disable-gtk";
|
||||||
|
|
||||||
|
postInstall = ''
|
||||||
|
rm $out/share/icons/hicolor/icon-theme.cache
|
||||||
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A fast, easy and free BitTorrent client";
|
description = "A fast, easy and free BitTorrent client";
|
||||||
|
Loading…
Reference in New Issue
Block a user