summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/editors
diff options
context:
space:
mode:
authorSandro <sandro.jaeckel@gmail.com>2021-01-23 21:13:41 +0100
committerGitHub <noreply@github.com>2021-01-23 21:13:41 +0100
commitc2211c2e71c67dd4616f0a9f9eb132e066fd4d36 (patch)
tree5ad34a6661b659a726a3b4c5e23211c1c84f2ac1 /pkgs/applications/editors
parent44837a9d6aab3380eb832f09a48a8eef23f4c0bd (diff)
parent09640efc3d64daf5fceda1aaf4df2fa115779161 (diff)
Merge pull request #110603 from dotlambda/setzer-0.4.1
setzer: 0.4.0 -> 0.4.1
Diffstat (limited to 'pkgs/applications/editors')
-rw-r--r--pkgs/applications/editors/setzer/default.nix8
1 files changed, 6 insertions, 2 deletions
diff --git a/pkgs/applications/editors/setzer/default.nix b/pkgs/applications/editors/setzer/default.nix
index 5c62dc06a7df..334f8b79c4b3 100644
--- a/pkgs/applications/editors/setzer/default.nix
+++ b/pkgs/applications/editors/setzer/default.nix
@@ -18,13 +18,13 @@
python3.pkgs.buildPythonApplication rec {
pname = "setzer";
- version = "0.4.0";
+ version = "0.4.1";
src = fetchFromGitHub {
owner = "cvfosammmm";
repo = "Setzer";
rev = "v${version}";
- sha256 = "036xbg65h255zlvz9l86sw6w9l4qfyf13x8p8ml7dj52hcdfvyb9";
+ sha256 = "1rcx2c07jg1ij81pnvg3px49hfbjmkagn68d3gp79z3gcajbp2av";
};
format = "other";
@@ -55,6 +55,10 @@ python3.pkgs.buildPythonApplication rec {
pycairo
];
+ checkPhase = ''
+ meson test --print-errorlogs
+ '';
+
meta = with lib; {
description = "LaTeX editor written in Python with Gtk";
homepage = src.meta.homepage;