tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
adcli: modernize
FliegendeWurst
9 months ago
43f9f545
81a9a5d4
+7
-7
1 changed file
expand all
collapse all
unified
split
pkgs
by-name
ad
adcli
package.nix
+7
-7
pkgs/by-name/ad/adcli/package.nix
···
14
xmlto,
15
}:
16
17
-
stdenv.mkDerivation rec {
18
pname = "adcli";
19
version = "0.9.2";
20
···
22
domain = "gitlab.freedesktop.org";
23
owner = "realmd";
24
repo = "adcli";
25
-
rev = version;
26
hash = "sha256-dipNKlIdc1DpXLg/YJjUxZlNoMFy+rt8Y/+AfWFA4dE=";
27
};
28
···
66
patch_docbook doc/adcli-docs.xml
67
'';
68
69
-
meta = with lib; {
70
homepage = "https://www.freedesktop.org/software/realmd/adcli/adcli.html";
71
description = "Helper library and tools for Active Directory client operations";
72
mainProgram = "adcli";
73
-
license = licenses.lgpl21Only;
74
-
maintainers = with maintainers; [
75
SohamG
76
anthonyroussel
77
];
78
-
platforms = platforms.linux;
79
};
80
-
}
···
14
xmlto,
15
}:
16
17
+
stdenv.mkDerivation (finalAttrs: {
18
pname = "adcli";
19
version = "0.9.2";
20
···
22
domain = "gitlab.freedesktop.org";
23
owner = "realmd";
24
repo = "adcli";
25
+
tag = finalAttrs.version;
26
hash = "sha256-dipNKlIdc1DpXLg/YJjUxZlNoMFy+rt8Y/+AfWFA4dE=";
27
};
28
···
66
patch_docbook doc/adcli-docs.xml
67
'';
68
69
+
meta = {
70
homepage = "https://www.freedesktop.org/software/realmd/adcli/adcli.html";
71
description = "Helper library and tools for Active Directory client operations";
72
mainProgram = "adcli";
73
+
license = lib.licenses.lgpl21Only;
74
+
maintainers = with lib.maintainers; [
75
SohamG
76
anthonyroussel
77
];
78
+
platforms = lib.platforms.linux;
79
};
80
+
})