about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/python-modules/pycuda/compyte.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/development/python-modules/pycuda/compyte.nix')
-rw-r--r--nixpkgs/pkgs/development/python-modules/pycuda/compyte.nix22
1 files changed, 22 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/development/python-modules/pycuda/compyte.nix b/nixpkgs/pkgs/development/python-modules/pycuda/compyte.nix
new file mode 100644
index 000000000000..192d60cec46a
--- /dev/null
+++ b/nixpkgs/pkgs/development/python-modules/pycuda/compyte.nix
@@ -0,0 +1,22 @@
+{ mkDerivation
+, fetchFromGitHub
+}:
+
+mkDerivation rec {
+  pname = "compyte";
+  version = "git-20150817";
+  name = pname + "-" + version;
+
+  src = fetchFromGitHub {
+    owner = "inducer";
+    repo = "compyte";
+    rev = "ac1c71d46428c14aa1bd1c09d7da19cd0298d5cc";
+    sha256 = "1980h017qi52b7fqwm75m481xs2napgdd3fbrzkfc29k085cbign";
+  };
+
+  installPhase = ''
+    mkdir -p $out
+    cp -r * $out
+  '';
+
+}