aboutsummaryrefslogtreecommitdiff
path: root/overlays/bugwarrior/default.nix
diff options
context:
space:
mode:
authorIsmaël Bouya <ismael.bouya@normalesup.org>2020-10-24 10:40:25 +0200
committerIsmaël Bouya <ismael.bouya@normalesup.org>2020-10-24 10:40:25 +0200
commit9970dfe647ff13341d32899bd5d283f119651a48 (patch)
tree63276c1a2daa0c3ecde5ccaa677908bb0882209e /overlays/bugwarrior/default.nix
parent982dc1fabf71cc91ef4409848dd1952c7e6f479f (diff)
downloadNix-9970dfe647ff13341d32899bd5d283f119651a48.tar.gz
Nix-9970dfe647ff13341d32899bd5d283f119651a48.tar.zst
Nix-9970dfe647ff13341d32899bd5d283f119651a48.zip
Add bugwarrior
Diffstat (limited to 'overlays/bugwarrior/default.nix')
-rw-r--r--overlays/bugwarrior/default.nix5
1 files changed, 5 insertions, 0 deletions
diff --git a/overlays/bugwarrior/default.nix b/overlays/bugwarrior/default.nix
new file mode 100644
index 0000000..2b25985
--- /dev/null
+++ b/overlays/bugwarrior/default.nix
@@ -0,0 +1,5 @@
1self: super: {
2 bugwarrior = super.python3Packages.bugwarrior.overridePythonAttrs(old: rec {
3 patches = old.patches or [] ++ [ ./mantisbt.patch ];
4 });
5}