Home

nur @b676a309399f118d2096e0ab81104420807de363 - refs - log -
-
https://git.jolheiser.com/nur.git
My NUR
nur / pkgs / godap / default.nix
- raw
 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
{
  buildGoModule,
  fetchFromGitHub,
  lib,
  ...
}:
buildGoModule rec {
  pname = "godap";
  version = "2.3.0";

  src = fetchFromGitHub {
    owner = "Macmod";
    repo = "godap";
    rev = "v${version}";
    sha256 = "sha256-lEiJbeqIzvctFmC9OriO64lt+pZkxZCPSW56H7vgBBo=";
  };

  vendorHash = "sha256-m536HECHpHRo/KPR/qhF40v3TsuTW3wghZu2pBYCJcQ=";

  meta = with lib; {
    description = "A complete TUI for LDAP.";
    homepage = "https://github.com/Macmod/godap";
    license = licenses.mit;
  };
}