about summary refs log tree commit diff stats
path: root/pkgs/by-name/co/comments/flake.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/by-name/co/comments/flake.nix')
-rw-r--r--pkgs/by-name/co/comments/flake.nix31
1 files changed, 0 insertions, 31 deletions
diff --git a/pkgs/by-name/co/comments/flake.nix b/pkgs/by-name/co/comments/flake.nix
deleted file mode 100644
index f5e44a65..00000000
--- a/pkgs/by-name/co/comments/flake.nix
+++ /dev/null
@@ -1,31 +0,0 @@
-{
-  description = "comments";
-
-  inputs = {
-    nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
-
-    flake-utils.url = "github:numtide/flake-utils";
-  };
-
-  outputs = {
-    self,
-    nixpkgs,
-    flake-utils,
-  }: (flake-utils.lib.eachDefaultSystem (system: let
-    pkgs = nixpkgs.legacyPackages."${system}";
-  in {
-    devShells.default = pkgs.mkShell {
-      packages = with pkgs; [
-        # rust stuff
-        cargo
-        clippy
-        rustc
-        rustfmt
-
-        cargo-edit
-        cargo-expand
-        cargo-audit
-      ];
-    };
-  }));
-}