rustdress: init at 0.5.2 (#426511)
This commit is contained in:
@@ -12415,6 +12415,13 @@
|
||||
githubId = 34899572;
|
||||
name = "jopejoe1";
|
||||
};
|
||||
jordan-bravo = {
|
||||
name = "Jordan Bravo";
|
||||
email = "jordan@bravo.cc";
|
||||
github = "jordan-bravo";
|
||||
githubId = 62706808;
|
||||
keys = [ { fingerprint = "9C7B 45CD CF53 B483 9BB8 000E C6E3 AECE B5E1 0B1E"; } ];
|
||||
};
|
||||
jordanisaacs = {
|
||||
name = "Jordan Isaacs";
|
||||
email = "nix@jdisaacs.com";
|
||||
|
||||
@@ -0,0 +1,38 @@
|
||||
{
|
||||
lib,
|
||||
fetchFromGitHub,
|
||||
rustPlatform,
|
||||
cmake,
|
||||
openssl,
|
||||
pkg-config,
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "rustdress";
|
||||
version = "0.5.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "niteshbalusu11";
|
||||
repo = "rustdress";
|
||||
tag = "v${version}";
|
||||
hash = "sha256-XEXvAAnktr7gfk3y8kLtrVmg0slx5wc4dCCWT2r+Wj0=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-COuHTjEy/VkfVd2/kjTKw1kiJI0XC72TEXaS8lVXsAQ=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
cmake
|
||||
pkg-config
|
||||
];
|
||||
buildInputs = [
|
||||
openssl
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Self-hosted Lightning Address Server";
|
||||
homepage = "https://github.com/niteshbalusu11/rustdress";
|
||||
license = lib.licenses.mit;
|
||||
maintainers = with lib.maintainers; [ jordan-bravo ];
|
||||
mainProgram = "rustdress";
|
||||
};
|
||||
}
|
||||
Reference in New Issue
Block a user