reckon: init at 0.4.4

This commit is contained in:
Kyle McKean
2016-08-10 14:16:24 +01:00
committed by zimbatm
parent c8755d26b5
commit de7a265117
5 changed files with 97 additions and 0 deletions
+30
View File
@@ -0,0 +1,30 @@
{ stdenv, lib, bundlerEnv, makeWrapper }:
stdenv.mkDerivation rec {
name = "reckon-${version}";
version = "0.4.4";
env = bundlerEnv {
name = "${name}-gems";
gemfile = ./Gemfile;
lockfile = ./Gemfile.lock;
gemset = ./gemset.nix;
};
phases = [ "installPhase" ];
buildInputs = [ makeWrapper ];
installPhase = ''
mkdir -p $out/bin
makeWrapper ${env}/bin/reckon $out/bin/reckon
'';
meta = with lib; {
description = "Flexibly import bank account CSV files into Ledger for command line accounting";
license = licenses.mit;
maintainers = "mckean.kylej@gmail.com";
platforms = platforms.unix;
};
}