summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-18 14:31:33 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-18 14:42:41 +0100
commit093cb612282f48d15ba295f109660e47a22f8e39 (patch)
tree68d61e95578bccb71f0da0d9e451c5d022d6910d /pkgs
parentceb94dc2b322212ee3622927f5f4c289c04a798e (diff)
factor out common configuration options
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/default.nix5
-rw-r--r--pkgs/filtron/default.nix16
2 files changed, 0 insertions, 21 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
deleted file mode 100644
index 73848b0..0000000
--- a/pkgs/default.nix
+++ /dev/null
@@ -1,5 +0,0 @@
-{ pkgs }:
-
-{
- filtron = pkgs.callPackage ./filtron {};
-}
diff --git a/pkgs/filtron/default.nix b/pkgs/filtron/default.nix
deleted file mode 100644
index 40a6f6c..0000000
--- a/pkgs/filtron/default.nix
+++ /dev/null
@@ -1,16 +0,0 @@
-{ 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";
-}