Merge pull request #25053 from Mesh33/buildtorrent-0.8

buildtorrent: init at 0.8
This commit is contained in:
Jörg Thalheim
2017-04-20 13:08:53 +02:00
committed by GitHub
2 changed files with 21 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
{ stdenv, fetchurl }:
let version = "0.8"; in
stdenv.mkDerivation rec {
name = "buildtorrent";
src = fetchurl {
url = "http://mathr.co.uk/blog/code/${name}-${version}.tar.gz";
sha256 = "e8e27647bdb38873ac570d46c1a9689a92b01bb67f59089d1cdd08784f7052d0";
};
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;
};
}