mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-28 09:53:10 +00:00
73 lines
1.8 KiB
Nix
73 lines
1.8 KiB
Nix
{ lib
|
||
, stdenv
|
||
, pkgs
|
||
, rustPackages
|
||
, fetchFromGitHub
|
||
, rustPlatform
|
||
, writers
|
||
, nixosTests
|
||
, CoreServices
|
||
, Security
|
||
}:
|
||
|
||
let
|
||
# Run `eval $(nix-build -A lorri.updater)` after updating the revision!
|
||
# It will copy some required files if necessary.
|
||
# Also don’t forget to run `nix-build -A lorri.tests`
|
||
version = "1.6.0";
|
||
gitRev = "1.6.0";
|
||
sha256 = "sha256-peelMKv9GOTPdyb1iifzlFikeayTchqaYCgeXyR5EgM=";
|
||
cargoSha256 = "sha256-UFAmTYnCqsQxBnCm1zMu+BcWIZMuuxvpF7poLlzC6Kg=";
|
||
|
||
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 ];
|
||
};
|
||
})
|