2023-03-24 00:07:29 +00:00
|
|
|
{ lib, rustPlatform, fetchFromGitHub, stdenv, darwin }:
|
2022-08-21 13:32:41 +00:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "rustypaste";
|
2023-07-15 17:15:38 +00:00
|
|
|
version = "0.11.1";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
src = fetchFromGitHub {
|
2022-08-21 13:32:41 +00:00
|
|
|
owner = "orhun";
|
|
|
|
repo = pname;
|
|
|
|
rev = "v${version}";
|
2023-07-15 17:15:38 +00:00
|
|
|
sha256 = "sha256-5yttOaDsWcRCFBzziOW4H1Nrs7/X/pGFlnPNUQRf+w8=";
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
cargoHash = "sha256-8lv0AGcV4LW6r+K0rIZNV0NPhX4j3+wbMw4JeJkNuXw=";
|
2022-08-21 13:32:41 +00:00
|
|
|
|
2023-03-24 00:07:29 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isDarwin [
|
|
|
|
darwin.apple_sdk.frameworks.CoreServices
|
|
|
|
];
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
# Some tests need network
|
|
|
|
checkFlags = [
|
2023-07-15 17:15:38 +00:00
|
|
|
"--skip=paste::tests::test_paste_data"
|
|
|
|
"--skip=server::tests::test_index_with_landing_page_file_not_found"
|
|
|
|
"--skip=server::tests::test_upload_file"
|
|
|
|
"--skip=server::tests::test_upload_remote_file"
|
|
|
|
"--skip=util::tests::test_get_expired_files"
|
2022-08-21 13:32:41 +00:00
|
|
|
];
|
|
|
|
|
2023-07-15 17:15:38 +00:00
|
|
|
__darwinAllowLocalNetworking = true;
|
|
|
|
|
2022-08-21 13:32:41 +00:00
|
|
|
meta = with lib; {
|
|
|
|
description = "A minimal file upload/pastebin service";
|
|
|
|
homepage = "https://github.com/orhun/rustypaste";
|
|
|
|
changelog = "https://github.com/orhun/rustypaste/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = licenses.mit;
|
2023-07-15 17:15:38 +00:00
|
|
|
maintainers = with maintainers; [ figsoda seqizz ];
|
2022-08-21 13:32:41 +00:00
|
|
|
};
|
|
|
|
}
|