wolfebin: init at 5.4

This commit is contained in:
Andrew Kelley 2015-06-19 02:17:51 -07:00
parent 6f4fbcc981
commit 3d7125d1a7
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,29 @@
{ stdenv, fetchFromGitHub, python }:
stdenv.mkDerivation rec {
version = "5.4";
name = "wolfebin-${version}";
src = fetchFromGitHub {
owner = "thejoshwolfe";
repo = "wolfebin";
rev = "${version}";
sha256 = "16xj6zz30sn9q05p211bmmsl0i6fknfxf8dssn6knm6nkiym8088";
};
buildInputs = [ python ];
installPhase = ''
install -m 755 -d $out/bin
install -m 755 wolfebin $out/bin
install -m 755 wolfebin_server.py $out/bin/wolfebin_server
'';
meta = with stdenv.lib; {
homepage = https://github.com/thejoshwolfe/wolfebin;
description = "Quick and easy file sharing";
license = licenses.mit;
maintainers = [ maintainers.andrewrk ];
platforms = platforms.all;
};
}

View file

@ -3180,6 +3180,10 @@ let
welkin = callPackage ../tools/graphics/welkin {};
wolfebin = callPackage ../tools/networking/wolfebin {
python = python2;
};
xl2tpd = callPackage ../tools/networking/xl2tpd { };
testdisk = callPackage ../tools/misc/testdisk { };