mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-16 06:47:09 +03:00
16 lines
541 B
Nix
16 lines
541 B
Nix
{ cabal, systemFilepath, text, time }:
|
|
|
|
cabal.mkDerivation (self: {
|
|
pname = "system-fileio";
|
|
version = "0.3.13";
|
|
sha256 = "12xsxcg2jk63x8aiikj5gx1an794zdfxzkx1sjnr2qyqyirk311v";
|
|
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 ];
|
|
};
|
|
})
|