diff options
author | Yves Fischer <yvesf+git@xapek.org> | 2021-12-31 23:53:52 +0100 |
---|---|---|
committer | Yves Fischer <yvesf+git@xapek.org> | 2021-12-31 23:57:06 +0100 |
commit | 810721ceac0249e747cdf36f3edec22d829d4371 (patch) | |
tree | 333268ca977222e2f5a41eff68607b36721f7694 /ebus-rust | |
parent | 76f8611ee3345268e2091a9d2e81b53a8b05889c (diff) | |
download | ebus-810721ceac0249e747cdf36f3edec22d829d4371.tar.gz ebus-810721ceac0249e747cdf36f3edec22d829d4371.zip |
ebus-rust nixos package
Diffstat (limited to 'ebus-rust')
-rw-r--r-- | ebus-rust/flake.lock | 42 | ||||
-rw-r--r-- | ebus-rust/flake.nix | 31 |
2 files changed, 0 insertions, 73 deletions
diff --git a/ebus-rust/flake.lock b/ebus-rust/flake.lock deleted file mode 100644 index 1114d39..0000000 --- a/ebus-rust/flake.lock +++ /dev/null @@ -1,42 +0,0 @@ -{ - "nodes": { - "flake-utils": { - "locked": { - "lastModified": 1631561581, - "narHash": "sha256-3VQMV5zvxaVLvqqUrNz3iJelLw30mIVSfZmAaauM3dA=", - "owner": "numtide", - "repo": "flake-utils", - "rev": "7e5bf3925f6fbdfaf50a2a7ca0be2879c4261d19", - "type": "github" - }, - "original": { - "owner": "numtide", - "repo": "flake-utils", - "type": "github" - } - }, - "nixpkgs": { - "locked": { - "lastModified": 1633709683, - "narHash": "sha256-KVJEToVd6SuUqc2XFIpfSjns07orqEWzIq9AcF/SIf8=", - "owner": "NixOS", - "repo": "nixpkgs", - "rev": "ce7a1190a0fa4ba3465b5f5471b08567060ca14c", - "type": "github" - }, - "original": { - "id": "nixpkgs", - "ref": "nixos-21.05", - "type": "indirect" - } - }, - "root": { - "inputs": { - "flake-utils": "flake-utils", - "nixpkgs": "nixpkgs" - } - } - }, - "root": "root", - "version": 7 -} diff --git a/ebus-rust/flake.nix b/ebus-rust/flake.nix deleted file mode 100644 index b39b841..0000000 --- a/ebus-rust/flake.nix +++ /dev/null @@ -1,31 +0,0 @@ -{ - inputs.nixpkgs.url = "nixpkgs/nixos-21.05"; - inputs.flake-utils.url = "github:numtide/flake-utils"; - - outputs = { self, nixpkgs, flake-utils }: - flake-utils.lib.eachDefaultSystem (system: - let - pkgs = nixpkgs.legacyPackages.${system}; - in - { - devShell = pkgs.mkShell { - nativeBuildInputs = with pkgs; [ - cargo - rustc - pkg-config - rustfmt - rls - clippy - bashInteractive - nixpkgs-fmt - gitFull - xxd - influxdb - ]; - buildInputs = with pkgs; [ - openssl - ]; - RUST_SRC_PATH = "${pkgs.rust.packages.stable.rustPlatform.rustLibSrc}"; - }; - }); -} |