mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-06 10:16:44 +01:00
3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
16 lines
535 B
Nix
16 lines
535 B
Nix
{ cabal, baseUnicodeSymbols }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "string-combinators";
|
|
version = "0.6.0.4";
|
|
sha256 = "0r1za5ypx9fz073h1yljjdkxmz0h77vg94bk827ndwkfgzgpzvh7";
|
|
buildDepends = [ baseUnicodeSymbols ];
|
|
meta = {
|
|
homepage = "https://github.com/basvandijk/string-combinators";
|
|
description = "Polymorphic functions to build and combine stringlike values";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|