19 lines
373 B
Nix
19 lines
373 B
Nix
{ pkgs ? import <nixpkgs> { } }:
|
|
|
|
pkgs.rustPlatform.buildRustPackage {
|
|
pname = "r_eom";
|
|
version = "0.1.0";
|
|
|
|
src = ./.;
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
meta = with pkgs.lib; {
|
|
description = "R_EoM library with a demo platform for testing and showcasing its features";
|
|
license = licenses.cc-by-sa-40;
|
|
platforms = platforms.all;
|
|
};
|
|
}
|