44 lines
1.2 KiB
Nix
44 lines
1.2 KiB
Nix
# self - next package set (after our additions)
|
|
# super - prior package set (before our additions)
|
|
# pkgs - final package set (after everyone's additions)
|
|
#
|
|
self: super: pkgs: with pkgs; {
|
|
|
|
blast = callPackage ./blast {
|
|
stdenv = overrideCC stdenv gcc5;
|
|
};
|
|
|
|
cryptominisat = callPackage ./cryptominisat.nix { };
|
|
|
|
#firedrake = callPackage ./firedrake { };
|
|
|
|
inherit (callPackages ./octopus/libxc.nix { }) libxc301 libxc404;
|
|
libxc3 = libxc301;
|
|
libxc4 = libxc404;
|
|
libxc = libxc4;
|
|
|
|
#meraculous = callPackage ./meraculous.nix { };
|
|
|
|
inherit (callPackages ./octopus/octopus.nix { }) octopus72;
|
|
octopus7 = octopus72;
|
|
octopus = octopus7;
|
|
|
|
openfoam = callPackage ./openfoam.nix { };
|
|
|
|
openslide = callPackage ./openslide { };
|
|
openslide-python = callPackage ./openslide/python.nix { };
|
|
|
|
#sumo = callPackage ./sumo.nix { };
|
|
|
|
namd = callPackage ./namd.nix { };
|
|
|
|
sambamba = callPackage ./sambamba { };
|
|
|
|
idba = callPackage ./idba.nix { };
|
|
|
|
nixStable = super.nixStable.overrideAttrs
|
|
( attrs: { patches = attrs.patches or [] ++ [ ./nix/remote.patch ./nix/cvmfs.patch ]; } );
|
|
nix = super.nix.overrideAttrs
|
|
( attrs: { patches = attrs.patches or [] ++ [ ./nix/remote.patch ./nix/cvmfs.patch ]; } );
|
|
}
|