mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-05 20:43:28 +00:00
40 lines
727 B
Nix
40 lines
727 B
Nix
|
{ lib
|
||
|
, boost
|
||
|
, fetchFromGitHub
|
||
|
, libsodium
|
||
|
, nix
|
||
|
, pkg-config
|
||
|
, rustPlatform
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "harmonia";
|
||
|
version = "0.2.0";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "helsinki-systems";
|
||
|
repo = pname;
|
||
|
rev = "refs/tags/${pname}-v${version}";
|
||
|
hash = "sha256-deqF6xDz3oCA1W8X8U1FD1gPYfxinZzpSuRKyaPDN/Y=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-eur3tg2w2WTA+JkOwTLwQzDZX7QN2xV4K0FIn7JN/rM=";
|
||
|
|
||
|
nativeBuildInputs = [
|
||
|
pkg-config
|
||
|
];
|
||
|
|
||
|
buildInputs = [
|
||
|
boost
|
||
|
libsodium
|
||
|
nix
|
||
|
];
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Nix binary cache";
|
||
|
homepage = "https://github.com/helsinki-systems/harmonia";
|
||
|
license = licenses.mit;
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
};
|
||
|
}
|