3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/package-management/nix/default.nix

79 lines
2.2 KiB
Nix
Raw Normal View History

2022-01-25 07:07:22 +00:00
{ lib
, aws-sdk-cpp
2022-01-25 07:07:22 +00:00
, boehmgc
, callPackage
, fetchFromGitHub
, fetchurl
, fetchpatch
2022-01-25 07:07:22 +00:00
, Security
, storeDir ? "/nix/store"
, stateDir ? "/nix/var"
2017-05-03 14:04:52 +01:00
, confDir ? "/etc"
}:
let
boehmgc-nix_2_3 = boehmgc.override { enableLargeConfig = true; };
boehmgc-nix = boehmgc-nix_2_3.overrideAttrs (drv: {
2022-01-25 07:07:22 +00:00
# Part of the GC solution in https://github.com/NixOS/nix/pull/4944
patches = (drv.patches or [ ]) ++ [ ./patches/boehmgc-coroutine-sp-fallback.patch ];
});
aws-sdk-cpp-nix = (aws-sdk-cpp.override {
apis = [ "s3" "transfer" ];
customMemoryManagement = false;
}).overrideDerivation (args: {
patches = (args.patches or [ ]) ++ [ ./patches/aws-sdk-cpp-TransferManager-ContentEncoding.patch ];
});
common = args:
callPackage
(import ./common.nix ({ inherit lib fetchFromGitHub; } // args))
{
inherit Security storeDir stateDir confDir;
boehmgc = boehmgc-nix;
aws-sdk-cpp = aws-sdk-cpp-nix;
};
2022-01-29 00:16:25 +00:00
in lib.makeExtensible (self: {
nix_2_3 = (common rec {
version = "2.3.16";
src = fetchurl {
url = "https://nixos.org/releases/nix/nix-${version}/nix-${version}.tar.xz";
sha256 = "sha256-fuaBtp8FtSVJLSAsO+3Nne4ZYLuBj2JpD2xEk7fCqrw=";
};
}).override { boehmgc = boehmgc-nix_2_3; };
nix_2_4 = common {
version = "2.4";
sha256 = "sha256-op48CCDgLHK0qV1Batz4Ln5FqBiRjlE6qHTiZgt3b6k=";
# https://github.com/NixOS/nix/pull/5537
patches = [ ./patches/install-nlohmann_json-headers.patch ];
};
2021-11-11 10:45:26 +00:00
nix_2_5 = common {
2021-12-20 13:42:30 +00:00
version = "2.5.1";
sha256 = "sha256-GOsiqy9EaTwDn2PLZ4eFj1VkXcBUbqrqHehRE9GuGdU=";
2022-01-25 07:07:22 +00:00
# https://github.com/NixOS/nix/pull/5536
patches = [ ./patches/install-nlohmann_json-headers.patch ];
};
2021-11-11 10:45:26 +00:00
nix_2_6 = common {
version = "2.6.0";
sha256 = "sha256-xEPeMcNJVOeZtoN+d+aRwolpW8mFSEQx76HTRdlhPhg=";
2022-01-26 18:44:03 +00:00
};
# FIXME: nix_2_6 is broken on aarch64-darwin for now.
2022-01-29 00:16:25 +00:00
stable = self.nix_2_5;
2022-01-25 02:03:13 +00:00
unstable = lib.lowPrio (common rec {
version = "2.7";
suffix = "pre20220127_${lib.substring 0 7 src.rev}";
src = fetchFromGitHub {
owner = "NixOS";
repo = "nix";
rev = "558c4ee3e370c9f9a6ea293df54ed6914a999f1c";
sha256 = "sha256-hMzKQflpgf3P7OdYKSnD1VMBSnF48XSRjaNX3bUJct4=";
2016-02-12 15:10:18 +00:00
};
});
2022-01-29 00:16:25 +00:00
})