colmena/default.nix

15 lines
361 B
Nix
Raw Normal View History

2020-12-15 20:58:39 -08:00
{
2020-12-18 01:27:44 -08:00
pkgs ? import ./pkgs.nix {},
2020-12-15 20:58:39 -08:00
}: let
2020-12-18 01:57:32 -08: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 = ./.;
cargoSha256 = "1ayfw41kaa5wcqym4sz1l44gldi0qz1pfhfsqd53hgaim4nqiwrn";
2020-12-18 01:57:32 -08:00
}