20 lines
535 B
Nix
20 lines
535 B
Nix
{ cabal, newtype, QuickCheck, semigroupoids, semigroups
|
|
, vectorSpace
|
|
}:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "active";
|
|
version = "0.1.0.8";
|
|
sha256 = "1q2zrx1i5j04c9bss7c19nm6lqasmwxyfzkh49my7yaik95k7bw9";
|
|
buildDepends = [ newtype semigroupoids semigroups vectorSpace ];
|
|
testDepends = [
|
|
newtype QuickCheck semigroupoids semigroups vectorSpace
|
|
];
|
|
jailbreak = true;
|
|
meta = {
|
|
description = "Abstractions for animation";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|