about summary refs log tree commit diff
path: root/pkgs/tools/security/su-exec/default.nix
blob: 0e26d2430cb13fdd3975aa4b4456dc20de826242 (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
{ lib, stdenv, fetchFromGitHub }:

stdenv.mkDerivation rec {
  pname = "su-exec";
  version = "0.2";

  src = fetchFromGitHub {
    owner  = "ncopa";
    repo   = "su-exec";
    rev    = "v${version}";
    sha256 = "12vqlnpv48cjfh25sn98k1myc7h2wiv5qw2y2awgp6sipzv88abv";
  };

  installPhase = ''
    mkdir -p $out/bin
    cp -a su-exec $out/bin/su-exec
  '';

  meta = with lib; {
    description = "switch user and group id and exec";
    homepage    = "https://github.com/ncopa/su-exec";
    license     = licenses.mit;
    maintainers = with maintainers; [ zimbatm ];
    platforms   = platforms.linux;
  };
}