tangled
alpha
login
or
join now
tjh.dev
/
nixpkgs
Clone of https://github.com/NixOS/nixpkgs.git (to stress-test knotserver)
0
fork
atom
overview
issues
pulls
pipelines
intecture-auth: init at 0.1.0
rushmorem
9 years ago
31d4b7b8
de4a1740
+31
2 changed files
expand all
collapse all
unified
split
pkgs
tools
admin
intecture
auth.nix
top-level
all-packages.nix
+29
pkgs/tools/admin/intecture/auth.nix
···
1
1
+
{ stdenv, lib, fetchFromGitHub, rustPlatform
2
2
+
, openssl, zeromq, czmq, pkgconfig, cmake, zlib }:
3
3
+
4
4
+
with rustPlatform;
5
5
+
6
6
+
buildRustPackage rec {
7
7
+
name = "intecture-auth-${version}";
8
8
+
version = "0.1.0";
9
9
+
10
10
+
src = fetchFromGitHub {
11
11
+
owner = "intecture";
12
12
+
repo = "auth";
13
13
+
rev = version;
14
14
+
sha256 = "1p3jahha8k139f22ijg050cl8akfzxda4gzvijpqv869hmhc70py";
15
15
+
};
16
16
+
17
17
+
depsSha256 = "0mki57yzb29y9fhh16xvpi5gfp6c14r5q3f45f3v8sdj95rjahz1";
18
18
+
19
19
+
buildInputs = [ openssl zeromq czmq zlib ];
20
20
+
21
21
+
nativeBuildInputs = [ pkgconfig cmake ];
22
22
+
23
23
+
meta = with lib; {
24
24
+
description = "Authentication client/server for Intecture components";
25
25
+
homepage = https://intecture.io;
26
26
+
license = licenses.mpl20;
27
27
+
maintainers = [ maintainers.rushmorem ];
28
28
+
};
29
29
+
}
+2
pkgs/top-level/all-packages.nix
···
2301
2301
2302
2302
innoextract = callPackage ../tools/archivers/innoextract { };
2303
2303
2304
2304
+
intecture-auth = callPackage ../tools/admin/intecture/auth.nix { };
2305
2305
+
2304
2306
intecture-cli = callPackage ../tools/admin/intecture/cli.nix { };
2305
2307
2306
2308
ioping = callPackage ../tools/system/ioping { };