6e0924ca84
This package is required by diagrams-lib. Signed-off-by: aszlig <aszlig@redmoonstudios.org> Acked-by: Peter Simons <simons@cryp.to>
14 lines
419 B
Nix
14 lines
419 B
Nix
{ cabal, newtype, semigroupoids, semigroups, vectorSpace }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "active";
|
|
version = "0.1.0.2";
|
|
sha256 = "1iymh3sd21ba7ijwv5afphn5vhmwchk6725hbcsdwk2d2x2gd674";
|
|
buildDepends = [ newtype semigroupoids semigroups vectorSpace ];
|
|
meta = {
|
|
description = "Abstractions for animation";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|