3b2254a3af
There is no point in receiving hundreds of e-mails; I cannot read them anyway.
15 lines
541 B
Nix
15 lines
541 B
Nix
{ cabal, systemFilepath, text, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "system-fileio";
|
|
version = "0.3.11";
|
|
sha256 = "0hnjrzhzbqx9l93c8dnl5b54f72ki584cn3jh8m6z56x2lrs24zb";
|
|
buildDepends = [ systemFilepath text time ];
|
|
meta = {
|
|
homepage = "https://john-millikin.com/software/haskell-filesystem/";
|
|
description = "Consistent filesystem interaction across GHC versions";
|
|
license = self.stdenv.lib.licenses.mit;
|
|
platforms = self.ghc.meta.platforms;
|
|
maintainers = [ self.stdenv.lib.maintainers.andres ];
|
|
};
|
|
})
|