about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/misc/ego/default.nix
blob: 67a71a196bd766c0fc2c2b1a63b853dc726ce54c (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
34
35
36
37
38
39
40
41
42
{ lib
, rustPlatform
, fetchFromGitHub
, makeBinaryWrapper
, acl
, xorg
}:

rustPlatform.buildRustPackage rec {
  pname = "ego";
  version = "1.1.7";

  src = fetchFromGitHub {
    owner = "intgr";
    repo = "ego";
    rev = version;
    hash = "sha256-613RM7Ldye0wHAH3VMhzhyT5WVTybph3gS/WNMrsgGI=";
  };

  buildInputs = [ acl ];

  nativeBuildInputs = [ makeBinaryWrapper ];

  cargoHash = "sha256-3leKejQ8kxamjwQPH1vg2I1CYc3r8k3pYfTWpOkqq8I=";

  # requires access to /root
  checkFlags = [
    "--skip tests::test_check_user_homedir"
  ];

  postInstall = ''
    wrapProgram $out/bin/ego --prefix PATH : ${lib.makeBinPath [ xorg.xhost ]}
  '';

  meta = {
    description = "Run Linux desktop applications under a different local user";
    homepage = "https://github.com/intgr/ego";
    license = lib.licenses.mit;
    maintainers = with lib.maintainers; [ dit7ya ];
    mainProgram = "ego";
  };
}