haskell-file-location: add version 0.4.5.2

This commit is contained in:
Peter Simons
2013-02-24 22:10:49 +01:00
parent a831ca8a4c
commit 52c8f2a8f6
2 changed files with 17 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
{ cabal, liftedBase, transformers }:
cabal.mkDerivation (self: {
pname = "file-location";
version = "0.4.5.2";
sha256 = "0dyzf2lhh0n4hwbh44qfh6bw9snl4hha9sv76c4ndi7v1rvnx197";
buildDepends = [ liftedBase transformers ];
testDepends = [ liftedBase transformers ];
meta = {
homepage = "https://github.com/gregwebs/FileLocation.hs";
description = "common functions that show file location information";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})