diff options
author | Igor Pashev <pashev.igor@gmail.com> | 2017-01-06 19:46:58 +0300 |
---|---|---|
committer | Igor Pashev <pashev.igor@gmail.com> | 2017-01-07 21:49:41 +0300 |
commit | 5ad946d06df56dbd395e4fef88a0b9581d1b4429 (patch) | |
tree | 38061dbffc22caae40aff53145c17c2706443c2c | |
parent | 44d2e9662af80e30c8fc0516616a3a8c40b17837 (diff) | |
download | nixsap-5ad946d06df56dbd395e4fef88a0b9581d1b4429.tar.gz |
Added ldapply 0.1.0+
LDIF idempotent apply tool
-rw-r--r-- | modules/pkgs/ldapply/default.nix | 11 | ||||
-rw-r--r-- | modules/pkgs/ldapply/ldap.nix | 17 | ||||
-rw-r--r-- | modules/pkgs/ldapply/main.nix | 21 |
3 files changed, 49 insertions, 0 deletions
diff --git a/modules/pkgs/ldapply/default.nix b/modules/pkgs/ldapply/default.nix new file mode 100644 index 0000000..f37f910 --- /dev/null +++ b/modules/pkgs/ldapply/default.nix @@ -0,0 +1,11 @@ +{ haskell, haskellPackages, openldap }: + +let myHaskellPkgs = haskellPackages.override { + overrides = self: super: { + LDAP = self.callPackage ./ldap.nix { inherit openldap; }; # Version with ldapTrivialExternalSaslBind + ldif = haskell.lib.dontCheck super.ldif; # requires ancient HUnit == 1.2.* + }; +}; + +in myHaskellPkgs.callPackage ./main.nix { } + diff --git a/modules/pkgs/ldapply/ldap.nix b/modules/pkgs/ldapply/ldap.nix new file mode 100644 index 0000000..75b5f64 --- /dev/null +++ b/modules/pkgs/ldapply/ldap.nix @@ -0,0 +1,17 @@ +{ mkDerivation, base, fetchgit, HUnit, openldap, stdenv }: +mkDerivation { + pname = "LDAP"; + version = "0.7.0"; + src = fetchgit { + url = "https://github.com/ip1981/ldap-haskell.git"; + sha256 = "1lb746ifqz216cxgxli30r30bx49f8l1an4k4w7sa87gdchjka4y"; + rev = "1d47f5712fc09bbf00c49bb58907aaf355fdf2e2"; + }; + libraryHaskellDepends = [ base ]; + librarySystemDepends = [ openldap ]; + testHaskellDepends = [ base HUnit ]; + testSystemDepends = [ openldap ]; + homepage = "https://github.com/ezyang/ldap-haskell"; + description = "Haskell binding for C LDAP API"; + license = stdenv.lib.licenses.bsd3; +} diff --git a/modules/pkgs/ldapply/main.nix b/modules/pkgs/ldapply/main.nix new file mode 100644 index 0000000..7c6f075 --- /dev/null +++ b/modules/pkgs/ldapply/main.nix @@ -0,0 +1,21 @@ +{ mkDerivation, base, bytestring, docopt, fetchgit +, interpolatedstring-perl6, LDAP, ldif, stdenv +, unordered-containers +}: +mkDerivation { + pname = "ldapply"; + version = "0.1.0"; + src = fetchgit { + url = "https://github.com/ip1981/ldapply.git"; + sha256 = "0vmq6l49hiyc20rv6xqj518m6bn7291ampjd1yf2b6w79isx3zfg"; + rev = "cdddf52e87b0b7a84b9b664df29004340f99ec20"; + }; + isLibrary = false; + isExecutable = true; + executableHaskellDepends = [ + base bytestring docopt interpolatedstring-perl6 LDAP ldif + unordered-containers + ]; + description = "LDIF idempotent apply tool"; + license = stdenv.lib.licenses.mit; +} |