colmena/default.nix

15 lines
361 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
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 = ./.;
cargoSha256 = "1ayfw41kaa5wcqym4sz1l44gldi0qz1pfhfsqd53hgaim4nqiwrn";
2020-12-18 10:57:32 +01:00
}