mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-27 08:04:14 +00:00
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;
|
||
|
};
|
||
|
})
|