summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorsinanmohd <sinan@sinanmohd.com>2023-12-04 07:48:47 +0530
committersinanmohd <sinan@sinanmohd.com>2023-12-04 07:48:47 +0530
commit54722454d8e5b7a8fbe67af0e07897a9511361d8 (patch)
tree81bfc6d1c3a5a4365795cc9deaf0d93086592cac
parentcf27440717b48a9a65bc11c1277b8af806023327 (diff)
pkgs: rm
-rw-r--r--common.nix1
-rw-r--r--pkgs/default.nix5
-rw-r--r--pkgs/pam_rundir/default.nix28
3 files changed, 0 insertions, 34 deletions
diff --git a/common.nix b/common.nix
index fa6172e..b7d3583 100644
--- a/common.nix
+++ b/common.nix
@@ -81,7 +81,6 @@ in
"flakes"
"nix-command"
];
- nixpkgs.overlays = [ (import ./pkgs) ];
# sops
sops = {
diff --git a/pkgs/default.nix b/pkgs/default.nix
deleted file mode 100644
index db2fbef..0000000
--- a/pkgs/default.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-final: prev:
-
-{
- pam_rundir = final.callPackage ./pam_rundir;
-}
diff --git a/pkgs/pam_rundir/default.nix b/pkgs/pam_rundir/default.nix
deleted file mode 100644
index f20661d..0000000
--- a/pkgs/pam_rundir/default.nix
+++ /dev/null
@@ -1,28 +0,0 @@
-{ stdenv, fetchFromGitHub, pam }:
-
-stdenv.mkDerivation rec {
- pname = "pam_rundir";
- version = "186";
-
- src = fetchFromGitHub {
- url = "https://www.padl.com/download/pam_ldap-${version}.tar.gz";
- sha256 = "0lv4f7hc02jrd2l3gqxd247qq62z11sp3fafn8lgb8ymb7aj5zn8";
- };
-
- buildInputs = [ pam ];
-
- meta = {
- homepage = "https://www.padl.com/OSS/pam_ldap.html";
- description = "Provide user runtime directory on Linux systems";
- longDescription = ''
- pam_rundir is a PAM module that can be used to provide user runtime
- directory, as described in the XDG Base Directory Specification.
-
- The directory will be created on login (open session) and removed on
- logout (close session), and its full path made available in an
- environment variable, usually $XDG_RUNTIME_DIR
- '';
- license = "GPL";
- inherit (pam.meta) platforms;
- };
-}