1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/development/libraries/haskell/active/default.nix
aszlig 6e0924ca84
haskell-active: New package in version 0.1.0.2.
This package is required by diagrams-lib.

Signed-off-by: aszlig <aszlig@redmoonstudios.org>
Acked-by: Peter Simons <simons@cryp.to>
2012-09-10 19:19:15 +02:00

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;
};
})