buildtorrent: init at 0.8
This commit is contained in:
parent
124c4b10c4
commit
2f66670162
19
pkgs/tools/misc/buildtorrent/default.nix
Normal file
19
pkgs/tools/misc/buildtorrent/default.nix
Normal 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;
|
||||||
|
};
|
||||||
|
}
|
@ -707,6 +707,8 @@ with pkgs;
|
|||||||
|
|
||||||
btrbk = callPackage ../tools/backup/btrbk { };
|
btrbk = callPackage ../tools/backup/btrbk { };
|
||||||
|
|
||||||
|
buildtorrent = callPackage ../tools/misc/buildtorrent { };
|
||||||
|
|
||||||
bwm_ng = callPackage ../tools/networking/bwm-ng { };
|
bwm_ng = callPackage ../tools/networking/bwm-ng { };
|
||||||
|
|
||||||
byobu = callPackage ../tools/misc/byobu {
|
byobu = callPackage ../tools/misc/byobu {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user