summary refs log tree commit diff
path: root/pkgs/tools/networking/wolfebin/default.nix
blob: 52874e89bbe7a582a932f1642c2069f270686de6 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
{ stdenv, fetchFromGitHub, python }:

stdenv.mkDerivation rec {
  version = "5.4";
  pname = "wolfebin";
  
  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;
  };
}