nixpkgs/pkgs/tools/misc/buildtorrent/default.nix

21 lines
511 B
Nix
Raw Normal View History

2017-04-20 01:42:49 +00:00
{ stdenv, fetchurl }:
let version = "0.8"; in
stdenv.mkDerivation rec {
2019-08-13 21:52:01 +00:00
pname = "buildtorrent";
inherit version;
2017-04-20 01:42:49 +00:00
src = fetchurl {
2019-08-13 21:52:01 +00:00
url = "https://mathr.co.uk/blog/code/${pname}-${version}.tar.gz";
sha256 = "e8e27647bdb38873ac570d46c1a9689a92b01bb67f59089d1cdd08784f7052d0";
};
2017-04-20 01:42:49 +00:00
meta = {
description = "A simple commandline torrent creator";
homepage = http://mathr.co.uk/blog/torrent.html;
license = stdenv.lib.licenses.gpl3Plus;
platforms = stdenv.lib.platforms.all;
};
}