summaryrefslogtreecommitdiff
path: root/pkgs/filtron
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-17 21:13:47 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-17 21:21:38 +0100
commit262ad5ace2500d97ee3015aee7655f5893801153 (patch)
tree5ff1f9c2b733b5bb7c68fb3ed7a61841b9392030 /pkgs/filtron
parent365a7368718fc52964eb487058a34c7a124e6989 (diff)
pkgs: add filtron
Diffstat (limited to 'pkgs/filtron')
-rw-r--r--pkgs/filtron/default.nix16
1 files changed, 16 insertions, 0 deletions
diff --git a/pkgs/filtron/default.nix b/pkgs/filtron/default.nix
new file mode 100644
index 0000000..40a6f6c
--- /dev/null
+++ b/pkgs/filtron/default.nix
@@ -0,0 +1,16 @@
+{ stdenv, buildGoModule, fetchFromGitHub }:
+
+buildGoModule rec {
+ pname = "filtron";
+ version = "0.2.0";
+
+ src = fetchFromGitHub {
+ owner = "asciimoo";
+ repo = "filtron";
+ rev = "v${version}";
+ sha256 = "18d3h0i2sfqbc0bjx26jm2n9f37zwp8z9z4wd17sw7nvkfa72a26";
+ };
+
+ doCheck = false;
+ vendorSha256 = "05q2g591xl08h387mm6njabvki19yih63dfsafgpc9hyk5ydf2n9";
+}