blob: 3a69576d23ab2c9051f71fb3002b47148f0d319f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
{ mkDerivation, base, bytestring, docopt, interpolatedstring-perl6
, LDAP, ldif, stdenv, unordered-containers
}:
mkDerivation {
pname = "ldapply";
version = "0.2.0";
sha256 = "0qgpb22k9krdhwjydzyfhjf85crxc49ss7x74mrqj8ivkzg5hl28";
isLibrary = false;
isExecutable = true;
executableHaskellDepends = [
base bytestring docopt interpolatedstring-perl6 LDAP ldif
unordered-containers
];
description = "LDIF idempotent apply tool";
license = stdenv.lib.licenses.mit;
}
|