3
0
Fork 0
forked from mirrors/nixpkgs

break-time: update Cargo.lock and unpin openssl

This commit is contained in:
figsoda 2023-05-12 22:17:06 -04:00
parent 1e5e280dec
commit a74cd3a147
3 changed files with 1630 additions and 4 deletions

File diff suppressed because it is too large Load diff

View file

@ -20,7 +20,9 @@ rustPlatform.buildRustPackage rec {
sha256 = "sha256-q79JXaBwd/oKtJPvK2+72pY2YvaR3of2CMC8cF6wwQ8=";
};
cargoSha256 = "sha256-DpX5tcIWt/pPGujufivmAGonVIiHERfa8Yb1JZpu3WA=";
cargoLock = {
lockFile = ./Cargo.lock;
};
nativeBuildInputs = [
pkg-config
@ -34,6 +36,11 @@ rustPlatform.buildRustPackage rec {
openssl
];
# update Cargo.lock to work with openssl
postPatch = ''
ln -sf ${./Cargo.lock} Cargo.lock
'';
meta = with lib; {
description = "Break timer that forces you to take a break";
homepage = "https://github.com/cdepillabout/break-time";

View file

@ -29349,9 +29349,7 @@ with pkgs;
brave = callPackage ../applications/networking/browsers/brave { };
break-time = callPackage ../applications/misc/break-time {
openssl = openssl_1_1;
};
break-time = callPackage ../applications/misc/break-time { };
breezy = with python3Packages; toPythonApplication breezy;