1
0
Fork 0

Update jali

This commit is contained in:
Malte Brandy 2020-07-13 13:37:01 +02:00
parent f7cee11299
commit 5e25ecccde
No known key found for this signature in database
GPG key ID: 226A2D41EF5378C9
3 changed files with 10 additions and 13 deletions

View file

@ -7,5 +7,5 @@ in {
inherit (unstable.gnome3) gnome-keyring seahorse gdm; inherit (unstable.gnome3) gnome-keyring seahorse gdm;
}; };
inherit (unstable) inherit (unstable)
neovim vimPlugins syncthing nerdfonts ormolu ghcid go-neb; # riot-desktop; aqbanking neovim vimPlugins syncthing nerdfonts ormolu ghcid go-neb; # riot-desktop;
} }

View file

@ -1,19 +1,16 @@
{ aqbanking, python3Packages, fetchgit }: { aqbanking, python3Packages, fetchgit }:
let let
andir = import (builtins.fetchTarball { inherit (python3Packages) jinja2 pendulum GitPython buildPythonApplication;
url = "https://github.com/andir/nixpkgs/archive/aqbanking.tar.gz";
sha256 = "06m7risi68jfqgv001ip77lzz6bylvvdn5j8sn845c54zpm6qp36";
}) { };
in with python3Packages;
buildPythonApplication rec {
name = "${pname}-${version}";
pname = "jali"; pname = "jali";
doCheck = false;
version = "b47d3b9"; version = "b47d3b9";
in buildPythonApplication {
name = "${pname}-${version}";
inherit pname version;
doCheck = false;
src = fetchgit { src = fetchgit {
url = "https://git.darmstadt.ccc.de/jali/jali.git"; url = "https://git.darmstadt.ccc.de/jali/jali.git";
rev = version; rev = version;
sha256 = "0l5h9hjri77zifx3x4khw7ncmmc9l9ppisdjilsfllzkabz4xjf4"; sha256 = "0l5h9hjri77zifx3x4khw7ncmmc9l9ppisdjilsfllzkabz4xjf4";
}; };
propagatedBuildInputs = [ jinja2 pendulum GitPython andir.aqbanking ]; propagatedBuildInputs = [ jinja2 pendulum GitPython aqbanking ];
} }

View file

@ -45,13 +45,13 @@ self: super: {
inherit (self.pythonPackages) yapf jsbeautifier; inherit (self.pythonPackages) yapf jsbeautifier;
inherit (self) inherit (self)
go gdb mpc_cli ncmpcpp shfmt htmlTidy astyle nodejs tasksh magic-wormhole go gdb mpc_cli ncmpcpp shfmt htmlTidy astyle nodejs tasksh magic-wormhole
nixfmt rnix-lsp tmate rustup kitty nix-top ghc ghcid ormolu; nixfmt rnix-lsp tmate rustup kitty nix-top ghc ghcid;
obelisk = (import self.sources.obelisk { }).command; obelisk = (import self.sources.obelisk { }).command;
neuron = import self.sources.neuron { }; neuron = import self.sources.neuron { };
}; };
accounting-pkgs = { accounting-pkgs = {
inherit (self.haskellPackages) hledger hledger-ui hledger-web; inherit (self.haskellPackages) hledger hledger-ui hledger-web hledger-iadd;
inherit (self) ledger jali; inherit (self) ledger jali aqbanking;
}; };
system-pkgs = self.core-system-pkgs // self.extra-system-pkgs // { system-pkgs = self.core-system-pkgs // self.extra-system-pkgs // {
inherit (self) test-system-config test-home-config test-config; inherit (self) test-system-config test-home-config test-config;