dumptorrent: init at 1.2
This commit is contained in:
parent
dddafe61eb
commit
85129e6c60
|
@ -0,0 +1,24 @@
|
||||||
|
{ stdenv, fetchurl }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "dumptorrent-${version}";
|
||||||
|
version = "1.2";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "mirror://sourceforge/dumptorrent/dumptorrent-${version}.tar.gz";
|
||||||
|
sha256 = "073h03bmpfdy15qh37lvppayld2747i4acpyk0pm5nf2raiak0zm";
|
||||||
|
};
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
mkdir -p $out/bin
|
||||||
|
cp ./dumptorrent $out/bin
|
||||||
|
'';
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Dump .torrent file information";
|
||||||
|
homepage = https://sourceforge.net/projects/dumptorrent/;
|
||||||
|
license = licenses.gpl2;
|
||||||
|
maintainers = [ maintainers.zohl ];
|
||||||
|
platforms = platforms.all;
|
||||||
|
};
|
||||||
|
}
|
|
@ -1314,6 +1314,8 @@ in
|
||||||
|
|
||||||
duff = callPackage ../tools/filesystems/duff { };
|
duff = callPackage ../tools/filesystems/duff { };
|
||||||
|
|
||||||
|
dumptorrent = callPackage ../tools/misc/dumptorrent { };
|
||||||
|
|
||||||
duo-unix = callPackage ../tools/security/duo-unix { };
|
duo-unix = callPackage ../tools/security/duo-unix { };
|
||||||
|
|
||||||
duplicity = callPackage ../tools/backup/duplicity {
|
duplicity = callPackage ../tools/backup/duplicity {
|
||||||
|
|
Loading…
Reference in New Issue