colmena/default.nix

22 lines
575 B
Nix
Raw Normal View History

2020-12-16 05:58:39 +01:00
{
2020-12-18 10:27:44 +01:00
pkgs ? import ./pkgs.nix {},
2020-12-16 05:58:39 +01:00
}: let
lib = pkgs.lib;
2020-12-18 10:57:32 +01:00
rustPlatform = if pkgs ? pinnedRust then pkgs.makeRustPlatform {
rustc = pkgs.pinnedRust;
cargo = pkgs.pinnedRust;
} else pkgs.rustPlatform;
in rustPlatform.buildRustPackage {
name = "colmena-dev";
version = "0.1.0";
src = lib.cleanSourceWith {
filter = name: type: !(type == "directory" && baseNameOf name == "target");
src = lib.cleanSourceWith {
filter = lib.cleanSourceFilter;
src = ./.;
};
};
2021-02-10 04:28:45 +01:00
cargoSha256 = "0imalrw8im6zl5lq8k5j05msykax85lya39vq0fxagifdckcdfsb";
2020-12-18 10:57:32 +01:00
}