summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/fingertree/default.nix
blob: 299b2e926dbd4aacea388c22cacc0aa4c54e0702 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ cabal }:

cabal.mkDerivation (self: {
  pname = "fingertree";
  version = "0.0.1.1";
  sha256 = "00llr24b2r539250fangl0jj39gf26gjwvhjpy5qg8l920hrjn78";
  meta = {
    description = "Generic finger-tree structure, with example instances";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})