colmena/default.nix

22 lines
511 B
Nix
Raw Normal View History

2020-12-15 20:58:39 -08:00
{
2021-02-10 00:39:25 -08:00
pkgs ? import ./pkgs.nix,
2020-12-15 20:58:39 -08:00
}: let
lib = pkgs.lib;
2021-02-10 00:39:25 -08:00
rustPlatform = pkgs.rustPlatform;
2020-12-18 01:57:32 -08:00
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 = ./.;
};
};
cargoSha256 = "1yjaqhv9gd86jq56vsrhv6qv3k5qh2pnc4zyxbi2fm2hdrvy0440";
2021-02-11 11:55:45 -08:00
# Recursive Nix is not stable yet
doCheck = false;
2020-12-18 01:57:32 -08:00
}