mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
* Transmission updated to 1.93.
svn path=/nixpkgs/trunk/; revision=21923
This commit is contained in:
parent
1fe9b4a3b1
commit
0619aaf2ac
@ -1,14 +1,19 @@
|
|||||||
{ stdenv, fetchurl, pkgconfig, openssl, curl, intltool, gtkClient ? true, gtk }:
|
{ stdenv, fetchurl, pkgconfig, openssl, curl, intltool, gtkClient ? true, gtk }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "transmission-1.92";
|
name = "transmission-1.93";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://mirrors.m0k.org/transmission/files/${name}.tar.bz2";
|
url = "http://mirrors.m0k.org/transmission/files/${name}.tar.bz2";
|
||||||
sha256 = "1vdvl3aza5cip4skhd2y4ip2vjci7q3y3qi3008ykk28ga93gw6s";
|
sha256 = "0w0nsyw10h4lm57qc09ja4iqqwvzcjldnqxi4zp0ha5dkbxv3dz9";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ pkgconfig openssl curl intltool ] ++ stdenv.lib.optional gtkClient gtk;
|
buildInputs = [ pkgconfig openssl curl intltool ] ++ stdenv.lib.optional gtkClient gtk;
|
||||||
|
|
||||||
configureFlags = if gtkClient then "--enable-gtk" else "--disable-gtk";
|
configureFlags = if gtkClient then "--enable-gtk" else "--disable-gtk";
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
description = "A fast, easy and free BitTorrent client.";
|
description = "A fast, easy and free BitTorrent client";
|
||||||
longDescription = ''
|
longDescription = ''
|
||||||
Transmission is a BitTorrent client which features a simple interface
|
Transmission is a BitTorrent client which features a simple interface
|
||||||
on top of a cross-platform back-end.
|
on top of a cross-platform back-end.
|
||||||
@ -22,7 +27,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
homepage = http://www.transmissionbt.com/;
|
homepage = http://www.transmissionbt.com/;
|
||||||
license = [ "GPLv2" ];
|
license = [ "GPLv2" ];
|
||||||
maintainers = with stdenv.lib.maintainers; [ astsmtl ];
|
maintainers = [ stdenv.lib.maintainers.astsmtl ];
|
||||||
platforms = with stdenv.lib.platforms; linux;
|
platforms = stdenv.lib.platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user