inlyne: 0.3.1 -> 0.3.2
Diff: https://github.com/trimental/inlyne/compare/v0.3.1...v0.3.2 Changelog: https://github.com/trimental/inlyne/releases/tag/v0.3.2
This commit is contained in:
parent
769f50186f
commit
083d4ff4c3
1 changed files with 9 additions and 3 deletions
|
@ -13,16 +13,16 @@
|
|||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "inlyne";
|
||||
version = "0.3.1";
|
||||
version = "0.3.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "trimental";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-B+H3G4jVysqrzWIP+1hktSGnycZLizxhmBCO/lYIr0I=";
|
||||
hash = "sha256-DSi6iS1ySdvGf6FxZpsDOAFpAKx/APcZjxA3Qy0gQBU=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-LFL2DVKu/UM7effikZN/IhSD6DrlwO+CF+S60PXULa0=";
|
||||
cargoHash = "sha256-UzegSJGAOBUDN8WluN7fLWS7NfHhm9YY0Zuq6DCIqHo=";
|
||||
|
||||
nativeBuildInputs = [
|
||||
installShellFiles
|
||||
|
@ -41,6 +41,12 @@ rustPlatform.buildRustPackage rec {
|
|||
darwin.apple_sdk_11_0.frameworks.AppKit
|
||||
];
|
||||
|
||||
checkFlags = lib.optionals stdenv.isDarwin [
|
||||
# time out on darwin
|
||||
"--skip=interpreter::tests::centered_image_with_size_align_and_link"
|
||||
"--skip=watcher::tests::the_gauntlet"
|
||||
];
|
||||
|
||||
postInstall = ''
|
||||
installShellCompletion --cmd inlyne \
|
||||
--bash <($out/bin/inlyne --gen-completions bash) \
|
||||
|
|
Loading…
Reference in a new issue