aboutsummaryrefslogtreecommitdiff
path: root/pkgs/servers/samba
diff options
context:
space:
mode:
authorWilliButz <wbutz@cyberfnord.de>2019-09-13 17:14:58 +0200
committerWilliButz <wbutz@cyberfnord.de>2019-09-13 17:16:27 +0200
commitcec85241129a2716ca6af34260fe4fe189080bb6 (patch)
tree9948d767c92c750eb2f4ca56b27052ba53963441 /pkgs/servers/samba
parentcca5cb5a0288352208a4b1f46008aa3ccb7aeccd (diff)
sambaMaster: remove outdated package
Diffstat (limited to 'pkgs/servers/samba')
-rw-r--r--pkgs/servers/samba/master.nix29
1 files changed, 0 insertions, 29 deletions
diff --git a/pkgs/servers/samba/master.nix b/pkgs/servers/samba/master.nix
deleted file mode 100644
index 21038a0f2183..000000000000
--- a/pkgs/servers/samba/master.nix
+++ /dev/null
@@ -1,29 +0,0 @@
-{ fetchFromGitHub
-, samba4
-, nettle
-} :
-
- (samba4.overrideAttrs(oldAttrs: rec {
- name = "samba-unstable-${version}";
- version = "2018-03-09";
-
- src = fetchFromGitHub {
- owner = "samba-team";
- repo = "samba";
- rev = "9e954bcbf43d67a18ee55f84cda0b09028f96b92";
- sha256 = "07j1pwm4kax6pq21gq9gpmp7dhj5afdyvkhgyl3yz334mb41q11g";
- };
-
- # Remove unnecessary install flags, same as <4.8 patch
- postPatch = oldAttrs.postPatch + ''
- sed -i '423,433d' dynconfig/wscript
- '';
-
- patches = [ ./4.x-no-persistent-install.patch ];
- buildInputs = [ nettle ] ++ oldAttrs.buildInputs;
- meta.branch = "master";
- })).override {
- # samba4.8+ removed the ability to disable LDAP.
- # Enable for base derivation here:
- enableLDAP = true;
- }