3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
424 B
Nix
15 lines
424 B
Nix
{ cabal, dlist, filepath, transformers }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "Glob";
|
|
version = "0.7.2";
|
|
sha256 = "1x4gh7z9jx9hdkjwsc31yyjssw6i7ziixhjrxr9b8zkijk1b4r5i";
|
|
buildDepends = [ dlist filepath transformers ];
|
|
meta = {
|
|
homepage = "http://iki.fi/matti.niemenmaa/glob/";
|
|
description = "Globbing library";
|
|
license = self.stdenv.lib.licenses.bsd3;
|
|
platforms = self.ghc.meta.platforms;
|
|
};
|
|
})
|