mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-25 16:33:15 +00:00
34 lines
758 B
Nix
34 lines
758 B
Nix
{ stdenv,
|
|
fetchFromGitHub,
|
|
lib,
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "microsocks";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rofl0r";
|
|
repo = "microsocks";
|
|
rev = "v${version}";
|
|
hash = "sha256-cB2XMWjoZ1zLAmAfl/nqjdOyBDKZ+xtlEmqsZxjnFn0=";
|
|
};
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -Dm 755 microsocks -t $out/bin/
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
meta = {
|
|
changelog = "https://github.com/rofl0r/microsocks/releases/tag/v${version}";
|
|
description = "Tiny, portable SOCKS5 server with very moderate resource usage";
|
|
homepage = "https://github.com/rofl0r/microsocks";
|
|
license = lib.licenses.mit;
|
|
mainProgram = "microsocks";
|
|
maintainers = with lib.maintainers; [ ramblurr ];
|
|
};
|
|
}
|