colmena/default.nix

19 lines
455 B
Nix
Raw Normal View History

2020-12-16 05:58:39 +01:00
{
2021-02-10 09:39:25 +01:00
pkgs ? import ./pkgs.nix,
2020-12-16 05:58:39 +01:00
}: let
lib = pkgs.lib;
2021-02-10 09:39:25 +01:00
rustPlatform = pkgs.rustPlatform;
2020-12-18 10:57:32 +01: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 = ./.;
};
};
2021-02-10 19:29:17 +01:00
cargoSha256 = "1ibhn8bbcx0y9gjl42d9ba478j6a5dr928v0ds61vwn7lbm68dzr";
2020-12-18 10:57:32 +01:00
}