override.nix 279 B

123456789101112
  1. pkgs: attrs: with pkgs; with attrs; rec {
  2. version = "5.6.3";
  3. src = fetchFromGitHub {
  4. owner = "tukaani-project";
  5. repo = "xz";
  6. rev = "v${version}";
  7. hash = "sha256-2bxTxgDGlA0zPlfFs69bkuBGL44Se1ktSZCJ1Pt75I0=";
  8. };
  9. nativeBuildInputs = [ autoreconfHook ];
  10. }