Skip to content

Instantly share code, notes, and snippets.

@teburd
Created February 20, 2015 17:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save teburd/045ce4ba36ebdf404e08 to your computer and use it in GitHub Desktop.
Save teburd/045ce4ba36ebdf404e08 to your computer and use it in GitHub Desktop.
config
{
packageOverrides = pkgs : with pkgs;{
myXmlsec = pkgs.stdenv.lib.overrideDerivation pkgs.xmlsec (attrs: {
buildInputs = attrs.buildInputs ++ [pkgs.openssl];
});
goEnv = pkgs.myEnvFun {
name = "goEnv";
shell = "${pkgs.zsh}/bin/zsh";
buildInputs = [
stdenv
gcc
pkgconfig
glib
libtool
gnumake
go
libxml2
libxslt
openssl
myXmlsec
zlib
];
};
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment