nixpkgs/pkgs/tools/networking/wolfebin/default.nix

30 lines
708 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, python }:
2015-06-19 09:17:51 +00:00
stdenv.mkDerivation rec {
version = "5.4";
pname = "wolfebin";
2015-06-19 09:17:51 +00:00
src = fetchFromGitHub {
owner = "thejoshwolfe";
repo = "wolfebin";
2019-09-08 23:38:31 +00:00
rev = version;
2015-06-19 09:17:51 +00:00
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 lib; {
homepage = "https://github.com/thejoshwolfe/wolfebin";
2015-06-19 09:17:51 +00:00
description = "Quick and easy file sharing";
license = licenses.mit;
maintainers = [ maintainers.andrewrk ];
platforms = platforms.all;
};
}