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

cabal.mkDerivation (self: {
  pname = "ranges";
  version = "0.2.4";
  sha256 = "1ymvmvfvzkdxblg691g9n5y94gpiz782jgyvaisg5mydzj1s1fyv";
  meta = {
    description = "Ranges and various functions on them";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
    maintainers = [ self.stdenv.lib.maintainers.andres ];
  };
})