summaryrefslogtreecommitdiff
path: root/pkgs
diff options
context:
space:
mode:
authorQuentin Aristote <quentin@aristote.fr>2023-02-17 22:56:33 +0100
committerQuentin Aristote <quentin@aristote.fr>2023-02-17 22:56:51 +0100
commit139504f4ae2ba0cbcad6d1dd93d18c881a0d6b6b (patch)
tree78180d3395d1ae0d57eb5ac47df7bbbb664137e7 /pkgs
parent7531ec61a93b953de7806fdef31b27a08365ab30 (diff)
pkgs: remove filtron (now in nixpkgs)
Diffstat (limited to 'pkgs')
-rw-r--r--pkgs/default.nix1
-rw-r--r--pkgs/filtron/default.nix16
2 files changed, 0 insertions, 17 deletions
diff --git a/pkgs/default.nix b/pkgs/default.nix
index a736462..4eb110d 100644
--- a/pkgs/default.nix
+++ b/pkgs/default.nix
@@ -28,7 +28,6 @@ let
barista = pkgs.callPackage ./barista {
inherit (personal) fontawesomeMetadata materialDesignIconsMetadata;
};
- filtron = pkgs.callPackage ./filtron {};
lockscreen = pkgs.callPackage ./lockscreen { };
} // gitignores // icons;
in personal
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";
-}