nixpkgs/pkgs/tools/misc/lorri/default.nix

71 lines
1.7 KiB
Nix
Raw Normal View History

2021-03-05 15:49:05 +00:00
{ lib
, stdenv
, pkgs
2021-03-05 15:49:05 +00:00
, rustPackages
, fetchFromGitHub
, rustPlatform
2020-06-30 00:09:13 +00:00
, writers
, nixosTests
, CoreServices
, Security
}:
2020-08-04 15:47:29 +00:00
let
# Run `eval $(nix-build -A lorri.updater)` after updating the revision!
2021-04-11 08:37:30 +00:00
version = "1.4.0";
gitRev = "fee4ffac9ee16fc921d413789cc059b043f2db3d";
sha256 = "sha256:0ix0k85ywlvkxsampajkq521d290gb0n60qwhnk6j0sc55yn558h";
cargoSha256 = "sha256:1ngn4wnyh6cjnyg7mb48zvng0zn5fcn8s75y88nh91xq9x1bi2d9";
2020-08-04 15:47:29 +00:00
in (rustPlatform.buildRustPackage rec {
pname = "lorri";
2020-08-04 15:47:29 +00:00
inherit version;
src = fetchFromGitHub {
owner = "nix-community";
repo = pname;
2020-08-04 15:47:29 +00:00
rev = gitRev;
inherit sha256;
};
outputs = [ "out" "man" "doc" ];
2020-08-04 15:47:29 +00:00
inherit cargoSha256;
doCheck = false;
BUILD_REV_COUNT = src.revCount or 1;
2021-03-05 15:49:05 +00:00
RUN_TIME_CLOSURE = pkgs.callPackage ./runtime.nix { };
2021-03-05 15:49:05 +00:00
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 = {
2020-06-30 00:09:13 +00:00
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;
};
};
2021-03-05 15:49:05 +00:00
meta = with lib; {
description = "Your project's nix-env";
homepage = "https://github.com/target/lorri";
license = licenses.asl20;
maintainers = with maintainers; [ grahamc Profpatsch ];
};
})