1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-12-25 03:17:13 +00:00
nixpkgs/pkgs/development/libraries/haskell/unix-time/default.nix

13 lines
318 B
Nix
Raw Normal View History

2012-08-09 10:12:45 +01:00
{ cabal }:
cabal.mkDerivation (self: {
pname = "unix-time";
version = "0.1.2";
sha256 = "146m4b93bla0pbf76bmff6f3aq9zx60cwy58mkqa0a4dyndd3pid";
2012-08-09 10:12:45 +01:00
meta = {
description = "Unix time parser/formatter and utilities";
license = self.stdenv.lib.licenses.bsd3;
platforms = self.ghc.meta.platforms;
};
})