nixpkgs/pkgs/applications/office/beancount/bean-add.nix

32 lines
799 B
Nix
Raw Normal View History

2016-09-29 15:10:21 +00:00
{ stdenv, fetchFromGitHub, python3Packages }:
2019-08-13 21:52:01 +00:00
stdenv.mkDerivation {
2018-02-21 12:52:40 +00:00
name = "bean-add-2018-01-08";
2016-09-29 15:10:21 +00:00
src = fetchFromGitHub {
owner = "simon-v";
repo = "bean-add";
2018-02-21 12:52:40 +00:00
rev = "660c657f295b019d8dbc26375924eb17bf654341";
sha256 = "0vzff2hdng8ybwd5frflhxpak0yqg0985p1dy7vpvhr8kbqqzwdz";
2016-09-29 15:10:21 +00:00
};
2016-10-13 22:03:12 +00:00
propagatedBuildInputs = with python3Packages; [ python ];
2016-09-29 15:10:21 +00:00
installPhase = ''
mkdir -p $out/bin/
cp bean-add $out/bin/bean-add
chmod +x $out/bin/bean-add
'';
meta = {
homepage = "https://github.com/simon-v/bean-add/";
2016-09-29 15:10:21 +00:00
description = "beancount transaction entry assistant";
# The (only) source file states:
# License: "Do what you feel is right, but don't be a jerk" public license.
maintainers = with stdenv.lib.maintainers; [ matthiasbeyer ];
2016-09-29 15:10:21 +00:00
};
}