2021-06-16 20:08:44 +02:00
|
|
|
{ lib, fetchFromGitHub, rustPlatform }:
|
2021-04-19 19:58:53 +02:00
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "lohr";
|
|
|
|
version = "0.4.0";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "alarsyo";
|
|
|
|
repo = "lohr";
|
|
|
|
rev = "v${version}";
|
|
|
|
sha256 = "sha256-MplTVJG+SoeLMXQP+ix/zM3OSHuQmZnunn900YnyCBw=";
|
|
|
|
};
|
|
|
|
|
|
|
|
cargoSha256 = "sha256-iuMJj8tqetlmdfsrfudnU1afwUzjls/UdYLq1u0gr+g=";
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Git mirroring daemon";
|
|
|
|
homepage = "https://github.com/alarsyo/lohr";
|
|
|
|
license = with licenses; [ mit asl20 ];
|
|
|
|
platforms = platforms.unix;
|
2021-05-13 10:27:19 +02:00
|
|
|
maintainers = with maintainers; [ ambroisie ];
|
2021-04-19 19:58:53 +02:00
|
|
|
};
|
|
|
|
}
|