linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / misc / dumptorrent / default.nix
blob12232c414fd355c36b29a273776007773016d67b
1 { lib, stdenv, fetchurl }:
3 stdenv.mkDerivation rec {
4     pname = "dumptorrent";
5     version = "1.2";
7     src = fetchurl {
8       url = "mirror://sourceforge/dumptorrent/dumptorrent-${version}.tar.gz";
9       sha256 = "073h03bmpfdy15qh37lvppayld2747i4acpyk0pm5nf2raiak0zm";
10     };
12     patchPhase = ''
13       substituteInPlace Makefile \
14         --replace "gcc" "cc"
15     '';
17     installPhase = ''
18       mkdir -p $out/bin
19       cp ./dumptorrent $out/bin
20     '';
22     meta = with lib; {
23       description = "Dump .torrent file information";
24       homepage = "https://sourceforge.net/projects/dumptorrent/";
25       license = licenses.gpl2;
26       maintainers = [ maintainers.zohl ];
27       platforms = platforms.all;
28     };