diff options
author | tv <tv@shackspace.de> | 2014-12-29 05:13:49 +0100 |
---|---|---|
committer | tv <tv@shackspace.de> | 2014-12-29 05:13:49 +0100 |
commit | c08c599d335e12aa82553b3501e79d6defdd6f65 (patch) | |
tree | 9770a40d3c71da1a79f2ffd7805f1ed0a799f515 /nix | |
parent | 618c6b5e2237e4c1e537e83a7f9d9672fca1f217 (diff) |
Add missing nix/friendly-time/default.nix
Diffstat (limited to 'nix')
-rw-r--r-- | nix/friendly-time/default.nix | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/nix/friendly-time/default.nix b/nix/friendly-time/default.nix new file mode 100644 index 0000000..75f3309 --- /dev/null +++ b/nix/friendly-time/default.nix @@ -0,0 +1,17 @@ +# This file was auto-generated by cabal2nix. Please do NOT edit manually! + +{ cabal, HUnit, testFramework, testFrameworkHunit, time }: + +cabal.mkDerivation (self: { + pname = "friendly-time"; + version = "0.3"; + sha256 = "10p78qbb1c87d0ag6cwc7blgwaw8r5sbs00gp5qg3sh9x7n9l3nj"; + buildDepends = [ time ]; + testDepends = [ HUnit testFramework testFrameworkHunit time ]; + meta = { + homepage = "http://github.com/pbrisbin/friendly-time"; + description = "Print time information in friendly ways"; + license = self.stdenv.lib.licenses.bsd3; + platforms = self.ghc.meta.platforms; + }; +}) |