-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathpkg.nix
More file actions
22 lines (22 loc) · 741 Bytes
/
pkg.nix
File metadata and controls
22 lines (22 loc) · 741 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
{ mkDerivation, af, base, directory, filepath, hspec
, hspec-discover, parsec, QuickCheck, quickcheck-classes, stdenv
, text, vector
}:
mkDerivation {
pname = "arrayfire";
version = "0.6.0.0";
src = ./.;
isLibrary = true;
isExecutable = true;
libraryHaskellDepends = [ base filepath vector ];
librarySystemDepends = [ af ];
executableHaskellDepends = [ base directory parsec text vector ];
testHaskellDepends = [
base directory hspec hspec-discover QuickCheck quickcheck-classes
vector
];
testToolDepends = [ hspec-discover ];
homepage = "https://github.com/arrayfire/arrayfire-haskell";
description = "Haskell bindings to the ArrayFire general-purpose GPU library";
license = stdenv.lib.licenses.bsd3;
}