2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2016-04-09 11:20:40 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "dumptorrent";
|
2016-04-09 11:20:40 +01:00
|
|
|
version = "1.2";
|
2021-01-19 21:20:11 +00:00
|
|
|
|
2016-04-09 11:20:40 +01:00
|
|
|
src = fetchurl {
|
|
|
|
url = "mirror://sourceforge/dumptorrent/dumptorrent-${version}.tar.gz";
|
|
|
|
sha256 = "073h03bmpfdy15qh37lvppayld2747i4acpyk0pm5nf2raiak0zm";
|
|
|
|
};
|
|
|
|
|
2016-08-12 04:18:57 +01:00
|
|
|
patchPhase = ''
|
|
|
|
substituteInPlace Makefile \
|
|
|
|
--replace "gcc" "cc"
|
|
|
|
'';
|
|
|
|
|
2016-04-09 11:20:40 +01:00
|
|
|
installPhase = ''
|
|
|
|
mkdir -p $out/bin
|
|
|
|
cp ./dumptorrent $out/bin
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2016-04-09 11:20:40 +01:00
|
|
|
description = "Dump .torrent file information";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/dumptorrent/";
|
2016-04-09 11:20:40 +01:00
|
|
|
license = licenses.gpl2;
|
|
|
|
maintainers = [ maintainers.zohl ];
|
|
|
|
platforms = platforms.all;
|
|
|
|
};
|
|
|
|
}
|