Skip to content

Instantly share code, notes, and snippets.

@anoother
Created November 11, 2017 22:56
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 anoother/13e05b092914d1136be5c5ea5f5218ec to your computer and use it in GitHub Desktop.
Save anoother/13e05b092914d1136be5c5ea5f5218ec to your computer and use it in GitHub Desktop.
nixpkgs.config = {
# Git cryptsetup for to get integritysetup
packageOverrides = pkgs: {
cryptsetup = pkgs.cryptsetup.overrideAttrs (oldAttrs: rec {
src = pkgs.fetchgit {
url = "https://gitlab.com/cryptsetup/cryptsetup.git";
branchName = "master";
};
nativeBuildInputs = [ autoreconfHook pkgconfig ];
});
};
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment