mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 11:40:45 +00:00
wolfebin: init at 5.4
This commit is contained in:
parent
6f4fbcc981
commit
3d7125d1a7
29
pkgs/tools/networking/wolfebin/default.nix
Normal file
29
pkgs/tools/networking/wolfebin/default.nix
Normal 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;
|
||||
};
|
||||
}
|
|
@ -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 { };
|
||||
|
|
Loading…
Reference in a new issue