Author: simons
Date: Sun Aug 21 18:01:13 2011
New Revision: 28724
URL: https://svn.nixos.org/websvn/nix/?rev=28724&sc=1

Log:
pkgs/applications/office/hledger-interest: initial version 1.0

Added:
   nixpkgs/trunk/pkgs/applications/office/hledger-interest/
   nixpkgs/trunk/pkgs/applications/office/hledger-interest/default.nix
Modified:
   nixpkgs/trunk/pkgs/top-level/haskell-packages.nix

Added: nixpkgs/trunk/pkgs/applications/office/hledger-interest/default.nix
==============================================================================
--- /dev/null   00:00:00 1970   (empty, because file is newly added)
+++ nixpkgs/trunk/pkgs/applications/office/hledger-interest/default.nix Sun Aug 
21 18:01:13 2011        (r28724)
@@ -0,0 +1,17 @@
+{ cabal, hledgerLib, mtl, time }:
+
+cabal.mkDerivation (self: {
+  pname = "hledger-interest";
+  version = "1.0";
+  sha256 = "082cyyyina7w5zvzsy1b9m9a7vb12ccxd351s8ajk11pg628zb80";
+  isLibrary = false;
+  isExecutable = true;
+  buildDepends = [ hledgerLib mtl time ];
+  meta = {
+    homepage = "http://github.com/peti/hledger-interest";;
+    description = "computes interest for a given account";
+    license = self.stdenv.lib.licenses.bsd3;
+    platforms = self.ghc.meta.platforms;
+    maintainers = [ self.stdenv.lib.maintainers.simons ];
+  };
+})

Modified: nixpkgs/trunk/pkgs/top-level/haskell-packages.nix
==============================================================================
--- nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug 21 16:09:41 
2011        (r28723)
+++ nixpkgs/trunk/pkgs/top-level/haskell-packages.nix   Sun Aug 21 18:01:13 
2011        (r28724)
@@ -724,6 +724,7 @@
     vty = self.vty_4_6_0_4;
   };
   hledgerChart = callPackage ../development/libraries/haskell/hledger-chart {};
+  hledgerInterest = callPackage ../applications/office/hledger-interest {};
 
   HList = callPackage ../development/libraries/haskell/HList {};
 
_______________________________________________
nix-commits mailing list
nix-comm...@cs.uu.nl
http://mail.cs.uu.nl/mailman/listinfo/nix-commits

Reply via email to