From 735dc15387b7dbbb81cde73ac567eecef5229806 Mon Sep 17 00:00:00 2001 From: diogo464 Date: Tue, 8 Oct 2024 21:26:10 +0000 Subject: removed nix stuff --- flake.nix | 25 ------------------------- 1 file changed, 25 deletions(-) delete mode 100644 flake.nix (limited to 'flake.nix') diff --git a/flake.nix b/flake.nix deleted file mode 100644 index 2e9252f..0000000 --- a/flake.nix +++ /dev/null @@ -1,25 +0,0 @@ -{ - inputs = { - naersk.url = "github:nix-community/naersk/master"; - nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable"; - utils.url = "github:numtide/flake-utils"; - }; - - outputs = { self, nixpkgs, utils, naersk }: - utils.lib.eachDefaultSystem (system: - let - pkgs = import nixpkgs { inherit system; }; - naersk-lib = pkgs.callPackage naersk { }; - in - { - defaultPackage = naersk-lib.buildPackage { - src = ./.; - RUSTC_BOOTSTRAP = 1; - }; - devShell = with pkgs; mkShell { - buildInputs = [ cargo rustc rustfmt pre-commit rustPackages.clippy ]; - RUST_SRC_PATH = rustPlatform.rustLibSrc; - }; - } - ); -} -- cgit