chore: remove nix flake

This commit is contained in:
2026-02-15 19:22:18 +01:00
parent 9de792e07d
commit eb7b09d137
2 changed files with 0 additions and 28 deletions

1
.gitignore vendored
View File

@@ -1,3 +1,2 @@
/target/ /target/
/Cargo.lock /Cargo.lock
/flake.lock

View File

@@ -1,27 +0,0 @@
{
description = "crdt-enc";
inputs = {
nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable-small";
flake-utils.url = "github:numtide/flake-utils";
};
outputs = { self, flake-utils, nixpkgs }:
flake-utils.lib.eachDefaultSystem (system:
let
pkgs = import nixpkgs { inherit system; };
in {
devShell = pkgs.stdenv.mkDerivation {
name = "crdt-enc";
buildInputs = [
pkgs.gpgme
pkgs.cargo
pkgs.rustc
pkgs.rustfmt
pkgs.rust-analyzer
];
};
}
);
}