blob: f52798b0ee73c766a9b0ec64dd950b7c750d18c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
|
{
lib,
rustPlatform,
fetchFromGitHub,
}:
rustPlatform.buildRustPackage (finalAttrs: {
pname = "rustypaste";
version = "0.16.1";
src = fetchFromGitHub {
owner = "orhun";
repo = "rustypaste";
rev = "v${finalAttrs.version}";
sha256 = "sha256-Jfi2Q6551g58dfOqtHtWxkbxwYV71f7MIuLB8RbaR94=";
};
cargoHash = "sha256-10tBbn4XtdUNhfzb+KpwFGZAc7YVIEQRaqNLzJC1GGI=";
dontUseCargoParallelTests = true;
checkFlags = [
# requires internet access
"--skip=paste::tests::test_paste_data"
"--skip=server::tests::test_upload_remote_file"
];
__darwinAllowLocalNetworking = true;
meta = {
description = "Minimal file upload/pastebin service";
homepage = "https://github.com/orhun/rustypaste";
changelog = "https://github.com/orhun/rustypaste/blob/v${finalAttrs.version}/CHANGELOG.md";
license = lib.licenses.mit;
maintainers = with lib.maintainers; [
seqizz
];
mainProgram = "rustypaste";
};
})
|