Skip to content

Instantly share code, notes, and snippets.

@thedebugger
Last active May 5, 2017 22:33
Show Gist options
  • Save thedebugger/0a70b5f108ef660ed8c9312210602f7f to your computer and use it in GitHub Desktop.
Save thedebugger/0a70b5f108ef660ed8c9312210602f7f to your computer and use it in GitHub Desktop.
overrideAttrs is missing
{ config, pkgs, ... }:
memcachedFix = pkgs.php56Packages.memcached.overrideAttrs oldAttrs: {
buildInputs = oldAttrs.buildInputs ++ [ pkgs.zlib ];
};
in
{
environment.systemPackages = with pkgs; [
memcachedFix
]
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment