dfafbdd56c
Fix `lorri direnv` triggering an unconditional rebuild every time it is run. After fixing up the build loop people suddenly started noticing that lorri was evaluating every time something ran `lorri direnv`, which could potentially be every time the user switched between buffers in the editor. This is not the intended behaviour, since we should run an unconditional build only the first time the project is added to the watcher, and after rely on the watcher to notify us of any file changes (or the user running `lorri internal ping` to force a rebuild).
71 lines
1.7 KiB
Nix
71 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, pkgs
|
|
, rustPackages
|
|
, fetchFromGitHub
|
|
, rustPlatform
|
|
, writers
|
|
, nixosTests
|
|
, CoreServices
|
|
, Security
|
|
}:
|
|
|
|
let
|
|
# Run `eval $(nix-build -A lorri.updater)` after updating the revision!
|
|
version = "1.3.1";
|
|
gitRev = "df83b9b175fecc8ec8b02096c5cfe2db3d00b92e";
|
|
sha256 = "1df6p0b482vhymw3z7gimc441jr7aix9lhdbcm5wjvw9f276016f";
|
|
cargoSha256 = "1f9b2h3zakw7qmlnc4rqhxnw80sl5h4mj8cghr82iacxwqz499ql";
|
|
|
|
in (rustPlatform.buildRustPackage rec {
|
|
pname = "lorri";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "nix-community";
|
|
repo = pname;
|
|
rev = gitRev;
|
|
inherit sha256;
|
|
};
|
|
|
|
outputs = [ "out" "man" "doc" ];
|
|
|
|
inherit cargoSha256;
|
|
doCheck = false;
|
|
|
|
BUILD_REV_COUNT = src.revCount or 1;
|
|
RUN_TIME_CLOSURE = pkgs.callPackage ./runtime.nix { };
|
|
|
|
nativeBuildInputs = [ rustPackages.rustfmt ];
|
|
buildInputs = lib.optionals stdenv.isDarwin [ CoreServices Security ];
|
|
|
|
# copy the docs to the $man and $doc outputs
|
|
postInstall = ''
|
|
install -Dm644 lorri.1 $man/share/man/man1/lorri.1
|
|
install -Dm644 -t $doc/share/doc/lorri/ \
|
|
README.md \
|
|
CONTRIBUTING.md \
|
|
LICENSE \
|
|
MAINTAINERS.md
|
|
cp -r contrib/ $doc/share/doc/lorri/contrib
|
|
'';
|
|
|
|
passthru = {
|
|
updater = writers.writeBash "copy-runtime-nix.sh" ''
|
|
set -euo pipefail
|
|
cp ${src}/nix/runtime.nix ${toString ./runtime.nix}
|
|
cp ${src}/nix/runtime-closure.nix.template ${toString ./runtime-closure.nix.template}
|
|
'';
|
|
tests = {
|
|
nixos = nixosTests.lorri;
|
|
};
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "Your project's nix-env";
|
|
homepage = "https://github.com/target/lorri";
|
|
license = licenses.asl20;
|
|
maintainers = with maintainers; [ grahamc Profpatsch ];
|
|
};
|
|
})
|