mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-09 19:13:26 +03:00
arpa2-leaf: init at 0.2
NGI project. Signed-off-by: Ethan Carter Edwards <ethan@ethancedwards.com>
This commit is contained in:
parent
530b8475c0
commit
5c75f447c9
1 changed files with 51 additions and 0 deletions
51
pkgs/by-name/ar/arpa2-leaf/package.nix
Normal file
51
pkgs/by-name/ar/arpa2-leaf/package.nix
Normal file
|
@ -0,0 +1,51 @@
|
||||||
|
{
|
||||||
|
lib,
|
||||||
|
stdenv,
|
||||||
|
fetchFromGitLab,
|
||||||
|
cmake,
|
||||||
|
arpa2cm,
|
||||||
|
quickder,
|
||||||
|
quickmem,
|
||||||
|
quick-sasl,
|
||||||
|
lillydap,
|
||||||
|
nix-update-script,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenv.mkDerivation (finalAttrs: {
|
||||||
|
# leaf is already used
|
||||||
|
pname = "arpa2-leaf";
|
||||||
|
version = "0.2";
|
||||||
|
|
||||||
|
src = fetchFromGitLab {
|
||||||
|
owner = "arpa2";
|
||||||
|
repo = "leaf";
|
||||||
|
tag = "v${finalAttrs.version}";
|
||||||
|
hash = "sha256-s52gtxM+BmG7oVrB5F0ORjkb4F3fWONiOxIWdDn2P5k=";
|
||||||
|
};
|
||||||
|
|
||||||
|
strictDeps = true;
|
||||||
|
|
||||||
|
nativeBuildInputs = [
|
||||||
|
cmake
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
arpa2cm
|
||||||
|
quickder
|
||||||
|
quickmem
|
||||||
|
quick-sasl
|
||||||
|
lillydap
|
||||||
|
];
|
||||||
|
|
||||||
|
passthru.updateScript = nix-update-script { };
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "LDAP Extended Attribute Filter";
|
||||||
|
homepage = "https://gitlab.com/arpa2/leaf";
|
||||||
|
changelog = "https://gitlab.com/arpa2/leaf/-/blob/v${finalAttrs.version}/CHANGES";
|
||||||
|
license = lib.licenses.bsd2;
|
||||||
|
teams = with lib.teams; [ ngi ];
|
||||||
|
maintainers = with lib.maintainers; [ ethancedwards8 ];
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
};
|
||||||
|
})
|
Loading…
Add table
Add a link
Reference in a new issue