My personal project and infrastructure archive
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
nomicon/pkgs/development/python-modules/pycuda/compyte.nix

21 lines
366 B

{ mkDerivation
, fetchFromGitHub
}:
mkDerivation {
pname = "compyte";
version = "git-20150817";
src = fetchFromGitHub {
owner = "inducer";
repo = "compyte";
rev = "ac1c71d46428c14aa1bd1c09d7da19cd0298d5cc";
sha256 = "1980h017qi52b7fqwm75m481xs2napgdd3fbrzkfc29k085cbign";
};
installPhase = ''
mkdir -p $out
cp -r * $out
'';
}