about summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/stringprep/default.nix
blob: 3fbdf196d5e5d6e62a91c5d1c407d646da4c3286 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{ cabal, QuickCheck, tasty, tastyQuickcheck, tastyTh, text, textIcu
}:

cabal.mkDerivation (self: {
  pname = "stringprep";
  version = "1.0.0";
  sha256 = "0ha4cvzdppd514xh9315v3nvrn1q4xd74gifdqpszw98hj2mw0b0";
  buildDepends = [ text textIcu ];
  testDepends = [
    QuickCheck tasty tastyQuickcheck tastyTh text textIcu
  ];
  meta = {
    description = "Implements the \"StringPrep\" algorithm";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})