Merge pull request #247771 from figsoda/rustypaste
rustypaste: 0.11.1 -> 0.12.0
This commit is contained in:
commit
4b572c7173
1 changed files with 6 additions and 7 deletions
|
@ -2,28 +2,27 @@
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "rustypaste";
|
pname = "rustypaste";
|
||||||
version = "0.11.1";
|
version = "0.12.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "orhun";
|
owner = "orhun";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-5yttOaDsWcRCFBzziOW4H1Nrs7/X/pGFlnPNUQRf+w8=";
|
sha256 = "sha256-Kk9SDGDTCq1qHew9yrf1HmYAhse5mB4AqH/Oo/lc0dc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoHash = "sha256-8lv0AGcV4LW6r+K0rIZNV0NPhX4j3+wbMw4JeJkNuXw=";
|
cargoHash = "sha256-6YTdOb1JvP5yTD1FVpHGG3C+hgiuTUiy05s+e3k8cdI=";
|
||||||
|
|
||||||
buildInputs = lib.optionals stdenv.isDarwin [
|
buildInputs = lib.optionals stdenv.isDarwin [
|
||||||
darwin.apple_sdk.frameworks.CoreServices
|
darwin.apple_sdk.frameworks.CoreServices
|
||||||
];
|
];
|
||||||
|
|
||||||
# Some tests need network
|
dontUseCargoParallelTests = true;
|
||||||
|
|
||||||
checkFlags = [
|
checkFlags = [
|
||||||
|
# requires internet access
|
||||||
"--skip=paste::tests::test_paste_data"
|
"--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=server::tests::test_upload_remote_file"
|
||||||
"--skip=util::tests::test_get_expired_files"
|
|
||||||
];
|
];
|
||||||
|
|
||||||
__darwinAllowLocalNetworking = true;
|
__darwinAllowLocalNetworking = true;
|
||||||
|
|
Loading…
Reference in a new issue