2021-01-10 23:54:33 -08:00
|
|
|
{ lib, stdenv, fetchurl }:
|
2017-04-19 18:42:49 -07:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-13 14:52:01 -07:00
|
|
|
pname = "buildtorrent";
|
2020-10-25 17:41:53 -07:00
|
|
|
version = "0.8";
|
2017-04-19 18:42:49 -07:00
|
|
|
|
2018-06-28 11:43:35 -07:00
|
|
|
src = fetchurl {
|
2019-08-13 14:52:01 -07:00
|
|
|
url = "https://mathr.co.uk/blog/code/${pname}-${version}.tar.gz";
|
2020-10-25 17:41:53 -07:00
|
|
|
sha256 = "sha256-6OJ2R72ziHOsVw1GwalompKwG7Z/WQidHN0IeE9wUtA=";
|
2018-06-28 11:43:35 -07:00
|
|
|
};
|
2017-04-19 18:42:49 -07:00
|
|
|
|
2021-01-10 23:54:33 -08:00
|
|
|
meta = with lib; {
|
2018-06-28 11:43:35 -07:00
|
|
|
description = "A simple commandline torrent creator";
|
2020-10-25 17:41:53 -07:00
|
|
|
homepage = "https://mathr.co.uk/blog/torrent.html";
|
|
|
|
license = licenses.gpl3Plus;
|
|
|
|
platforms = platforms.all;
|
2018-06-28 11:43:35 -07:00
|
|
|
};
|
2018-05-23 21:37:33 -07:00
|
|
|
}
|