implemented basic data extraction
This commit is contained in:
parent
fe3787fd7a
commit
46fc01b803
13 changed files with 578 additions and 0 deletions
11
nix/default.nix
Normal file
11
nix/default.nix
Normal file
|
|
@ -0,0 +1,11 @@
|
|||
{ pkgs ? import <nixpkgs> { }, lib }:
|
||||
|
||||
pkgs.rustPlatform.buildRustPackage rec {
|
||||
pname = "algos-in-rust";
|
||||
version = "1.0.0";
|
||||
cargoLock.lockFile = ../Cargo.lock;
|
||||
src = pkgs.lib.cleanSource ../.;
|
||||
buildInputs = [ ];
|
||||
nativeBuildInputs = [ pkgs.pkg-config ];
|
||||
doCheck = false;
|
||||
}
|
||||
Reference in a new issue