mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 23:13:19 +00:00
61 lines
1.4 KiB
Nix
61 lines
1.4 KiB
Nix
{
|
|
lib,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
oo7,
|
|
openssl,
|
|
pkg-config,
|
|
testers,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "oo7";
|
|
version = "0.3.3";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bilelmoussaoui";
|
|
repo = "oo7";
|
|
rev = version;
|
|
hash = "sha256-KoceqJCxb61EF29Fw9UU2LCHxDR0ExR3lnt85Nqg6tg=";
|
|
};
|
|
|
|
cargoLock = {
|
|
lockFile = ./Cargo.lock;
|
|
};
|
|
|
|
postPatch = ''
|
|
ln -s ${./Cargo.lock} Cargo.lock
|
|
'';
|
|
|
|
nativeBuildInputs = [ pkg-config ];
|
|
|
|
buildInputs = [ openssl ];
|
|
|
|
postInstall = ''
|
|
install -Dm644 portal/data/oo7-portal.portal $out/share/xdg-desktop-portal/portals/oo7.portal
|
|
install -Dm644 portal/data/oo7-portal.service $out/share/dbus-1/services/oo7-portal.service
|
|
substituteInPlace $out/share/dbus-1/services/oo7-portal.service \
|
|
--replace-fail "@bindir@" "$out/bin"
|
|
'';
|
|
|
|
passthru = {
|
|
tests.testVersion = testers.testVersion { package = oo7; };
|
|
|
|
# TODO: re-enable this when upstream adds a Cargo.lock
|
|
# updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = with lib; {
|
|
description = "James Bond went on a new mission as a Secret Service provider";
|
|
homepage = "https://github.com/bilelmoussaoui/oo7";
|
|
changelog = "https://github.com/bilelmoussaoui/oo7/releases/tag/${src.rev}";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [
|
|
getchoo
|
|
Scrumplex
|
|
];
|
|
platforms = platforms.linux;
|
|
mainProgram = "oo7-cli";
|
|
};
|
|
}
|