Disable hydra cache.

This commit is contained in:
Gabriel Ebner 2016-04-24 16:57:21 +02:00
parent c34565a809
commit 02daa2e246
2 changed files with 5 additions and 6 deletions

@ -11,9 +11,8 @@
boot.kernelPackages = pkgs.linuxPackages_latest;
nix.useChroot = true;
nix.binaryCaches = [ https://hydra.nixos.org https://cache.nixos.org ];
nix.trustedBinaryCaches = [ https://hydra.nixos.org https://cache.nixos.org ];
nix.binaryCachePublicKeys = [ "hydra.nixos.org-1:CNHJZBh9K4tP3EKF6FkkgeVYsS3ohTl+oS0Qa8bezVs=" ];
nix.binaryCaches = [ https://cache.nixos.org ];
nix.trustedBinaryCaches = [ https://cache.nixos.org ];
nix.extraOptions = ''
auto-optimise-store = true
binary-caches-parallel-connections = 10

@ -1,11 +1,11 @@
with import <nixpkgs> {};
stdenv.mkDerivation rec {
name = "yjp-${version}";
version = "2015-build-15082";
version = "2016.02-b29";
src = fetchzip {
src = fetchurl {
url = "https://www.yourkit.com/download/${name}.zip";
sha256 = "1szwzqyn7mj12wibjsrh02fibgr7wa2rbyp1mhzdzm5hjs49vn2r";
sha256 = "1i5a8zjgv9wzgpr7fpyrr4j24cmlq2ykz4d5zw0dlqxm9m096dl9";
};
nativeBuildInputs = [ unzip makeWrapper patchelf ];