about summary refs log tree commit diff
path: root/nixpkgs/pkgs/by-name/mi/microsocks/package.nix
blob: 8c773bc1c3fe394645afad9f75a2ddee5db1b833 (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
30
31
32
33
{ 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 ];
  };
}