diff options
| author | Quentin Aristote <quentin@aristote.fr> | 2023-02-17 22:56:33 +0100 |
|---|---|---|
| committer | Quentin Aristote <quentin@aristote.fr> | 2023-02-17 22:56:51 +0100 |
| commit | 139504f4ae2ba0cbcad6d1dd93d18c881a0d6b6b (patch) | |
| tree | 78180d3395d1ae0d57eb5ac47df7bbbb664137e7 | |
| parent | 7531ec61a93b953de7806fdef31b27a08365ab30 (diff) | |
pkgs: remove filtron (now in nixpkgs)
| -rw-r--r-- | modules/nixos/filtron.nix | 3 | ||||
| -rw-r--r-- | pkgs/default.nix | 1 | ||||
| -rw-r--r-- | pkgs/filtron/default.nix | 16 |
3 files changed, 1 insertions, 19 deletions
diff --git a/modules/nixos/filtron.nix b/modules/nixos/filtron.nix index 31d77e9..6d75558 100644 --- a/modules/nixos/filtron.nix +++ b/modules/nixos/filtron.nix @@ -16,8 +16,7 @@ in { enable = lib.mkEnableOption "filtron"; package = lib.mkOption { type = lib.types.package; - default = pkgs.personal.filtron; - defaultText = lib.literalExample "pkgs.personal.filtron"; + default = pkgs.filtron; description = '' The package containing the filtron executable. ''; 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"; -} |
