summary refs log tree commit diff
path: root/pkgs/development/libraries/haskell/statvfs/default.nix
blob: 604edc83139529087227aaa0d4661c8f5b47a970 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
{ cabal }:

cabal.mkDerivation (self: {
  pname = "statvfs";
  version = "0.1";
  sha256 = "1v45lx7wr27f5sx7cpfsapx1r6akgf1q3hpip1ibbsbhj65ws2r2";
  meta = {
    description = "Get unix filesystem statistics with statfs, statvfs";
    license = self.stdenv.lib.licenses.bsd3;
    platforms = self.ghc.meta.platforms;
  };
})