Skip to content

Commit

Permalink
lorri: 1.1.1 -> 1.2.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Profpatsch committed Aug 4, 2020
1 parent e60a22b commit c253216
Showing 1 changed file with 12 additions and 7 deletions.
19 changes: 12 additions & 7 deletions pkgs/tools/misc/lorri/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,16 @@
, Security
}:

(rustPlatform.buildRustPackage rec {
let
# Run `eval $(nix-build -A lorri.updater)` after updating the revision!
version = "1.2";
gitRev = "43a260c221d5dac4a44fd82271736c8444474eec";
sha256 = "0g6zq27dpr8bdan5xrqchybpbqwnhhc7x8sxbfygigbqd3xv9i6n";
cargoSha256 = "1zmlp14v7av0znmjyy2aq83lc74503p6r0l11l9iw7s3xad8rda4";

in (rustPlatform.buildRustPackage rec {
pname = "lorri";
version = "1.1.1";
inherit version;

meta = with stdenv.lib; {
description = "Your project's nix-env";
Expand All @@ -26,13 +33,11 @@
src = fetchFromGitHub {
owner = "target";
repo = pname;
# Run `eval $(nix-build -A lorri.updater)` after updating the revision!
# ALSO don’t forget to update the cargoSha256!
rev = "05ea21170a18800e83b3dcf1e3d347f83a9fa992";
sha256 = "1lgig5q1anmmmc1i1qnbx8rd8mqvm5csgnlaxlj4l4rxjmgiv06n";
rev = gitRev;
inherit sha256;
};

cargoSha256 = "16asbpq47f3zcv4j9rzqx9v1317qz7xjr7dxd019vpr88zyk4fi1";
inherit cargoSha256;
doCheck = false;

BUILD_REV_COUNT = src.revCount or 1;
Expand Down

0 comments on commit c253216

Please sign in to comment.