nixpkgs/pkgs/tools/networking/wolfebin/default.nix
volth 46420bbaa3 treewide: name -> pname (easy cases) (#66585)
treewide replacement of

stdenv.mkDerivation rec {
  name = "*-${version}";
  version = "*";

to pname
2019-08-15 13:41:18 +01:00

29 lines
715 B
Nix

{ 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;
};
}