1 { lib, stdenv, fetchFromGitHub, python3 }:
3 stdenv.mkDerivation rec {
7 src = fetchFromGitHub {
8 owner = "thejoshwolfe";
11 sha256 = "sha256-tsI71/UdLaGZ3O2lNTd1c8S5OS2imquLovh0n0ez8Ts=";
14 buildInputs = [ python3 ];
17 install -m 755 -d $out/bin
18 install -m 755 wolfebin $out/bin
19 install -m 755 wolfebin_server.py $out/bin/wolfebin_server
23 homepage = "https://github.com/thejoshwolfe/wolfebin";
24 description = "Quick and easy file sharing";
25 license = licenses.mit;
26 maintainers = with maintainers; [ andrewrk ];
27 platforms = platforms.all;