summary refs log tree commit diff
path: root/pkgs/development/libraries/libpam-wrapper
diff options
context:
space:
mode:
authorElyhaka <57923898+Elyhaka@users.noreply.github.com>2020-05-19 14:02:39 +0200
committerElyhaka <57923898+Elyhaka@users.noreply.github.com>2020-05-19 14:02:39 +0200
commit8c9dc6df6107b1dcc0ebf99c642b414ca785bc75 (patch)
tree636a47f95f02f5192b30b64e5910488fac028d68 /pkgs/development/libraries/libpam-wrapper
parentb47873026c7e356a340d0e1de7789d4e8428ac66 (diff)
downloadnixpkgs-8c9dc6df6107b1dcc0ebf99c642b414ca785bc75.tar
nixpkgs-8c9dc6df6107b1dcc0ebf99c642b414ca785bc75.tar.gz
nixpkgs-8c9dc6df6107b1dcc0ebf99c642b414ca785bc75.tar.bz2
nixpkgs-8c9dc6df6107b1dcc0ebf99c642b414ca785bc75.tar.lz
nixpkgs-8c9dc6df6107b1dcc0ebf99c642b414ca785bc75.tar.xz
nixpkgs-8c9dc6df6107b1dcc0ebf99c642b414ca785bc75.tar.zst
nixpkgs-8c9dc6df6107b1dcc0ebf99c642b414ca785bc75.zip
libpam-wrapper: init at 1.1.3
Diffstat (limited to 'pkgs/development/libraries/libpam-wrapper')
-rw-r--r--pkgs/development/libraries/libpam-wrapper/default.nix33
1 files changed, 33 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libpam-wrapper/default.nix b/pkgs/development/libraries/libpam-wrapper/default.nix
new file mode 100644
index 00000000000..f8359cded93
--- /dev/null
+++ b/pkgs/development/libraries/libpam-wrapper/default.nix
@@ -0,0 +1,33 @@
+{ stdenv
+, fetchgit
+, cmake
+, linux-pam
+, enablePython ? false
+, python ? null
+}:
+
+assert enablePython -> python != null;
+
+stdenv.mkDerivation rec {
+  pname = "libpam-wrapper";
+  version = "1.1.3";
+
+  src = fetchgit {
+    url = "git://git.samba.org/pam_wrapper.git";
+    rev = "pam_wrapper-${version}";
+    sha256 = "00mqhsashx7njrvxz085d0b88nizhdy7m3x17ip5yhvwsl63km6p";
+  };
+
+  nativeBuildInputs = [ cmake ] ++ stdenv.lib.optional enablePython [ python ];
+
+  # We must use linux-pam, using openpam will result in broken fprintd.
+  buildInputs = [ linux-pam ];
+
+  meta = with stdenv.lib; {
+    description = "Wrapper for testing PAM modules";
+    homepage = "https://cwrap.org/pam_wrapper.html";
+    license = licenses.gpl3Plus;
+    maintainers = [ maintainers.elyhaka ];
+    platforms = platforms.linux;
+  };
+}