1
0
Fork 0
mirror of https://git.sr.ht/~neverness/ultima synced 2025-01-10 16:23:53 +00:00
ultima/modules/home/programs/custom/torrent/pkg.nix

12 lines
317 B
Nix
Raw Normal View History

2024-12-09 01:15:55 +00:00
{ buildPythonPackage, fetchurl }:
buildPythonPackage {
pname = "tor2mag";
version = "0.0.1";
doCheck = false;
src = fetchurl {
url = "https://raw.githubusercontent.com/repolho/torrent2magnet/refs/heads/master/torrent2magnet.py";
2024-12-09 01:15:55 +00:00
sha256 = "sha256-sXMCx9dYg/JYQqbsDHBMJqRqT16WPbBj1O3+Hqxxhkc=";
};
}