shifty-backend/build.nix
Simon Goller 418a2944f7 Add nix files
* Build file
* Docker file
2024-05-09 07:18:35 +02:00

10 lines
250 B
Nix

{ pkgs ? import <nixpkgs> {} }:
let
rustPlatform = pkgs.rustPlatform;
in
rustPlatform.buildRustPackage {
pname = "shifty-service";
version = "0.1";
src = ./.;
cargoHash = "sha256-bgtX30TGRlBjCZ8qbqNgovsZrZqJ9kEGlv/qv6T5uZA=";
}