bean-add: init at 2016-10-01
This commit is contained in:
parent
4d8e445a14
commit
fe726ca733
31
pkgs/applications/office/beancount/bean-add.nix
Normal file
31
pkgs/applications/office/beancount/bean-add.nix
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
{ stdenv, fetchFromGitHub, python3Packages }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
name = "bean-add-2016-10-01";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "simon-v";
|
||||||
|
repo = "bean-add";
|
||||||
|
rev = "ea0c21090a9af171e60f325a3a4de810a565aba7";
|
||||||
|
sha256 = "11xx3p29z40xwc9m9ajn1lrkphyyi6kr9ww7f761lj3y8h7q5jcr";
|
||||||
|
};
|
||||||
|
|
||||||
|
propagatedBuildInputs = with python3Packages; [ python readline ];
|
||||||
|
|
||||||
|
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/;
|
||||||
|
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 ];
|
||||||
|
};
|
||||||
|
}
|
||||||
|
|
@ -15184,6 +15184,8 @@ in
|
|||||||
pythonPackages = python3Packages;
|
pythonPackages = python3Packages;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
bean-add = callPackage ../applications/office/beancount/bean-add.nix { };
|
||||||
|
|
||||||
beret = callPackage ../games/beret { };
|
beret = callPackage ../games/beret { };
|
||||||
|
|
||||||
bitsnbots = callPackage ../games/bitsnbots {
|
bitsnbots = callPackage ../games/bitsnbots {
|
||||||
|
Loading…
x
Reference in New Issue
Block a user