aphorme: init at 0.1.19

This commit is contained in:
Simon Struck 2024-04-05 09:28:25 +02:00
parent e8b6d29b6d
commit b81e02613c
1 changed files with 52 additions and 0 deletions

View File

@ -0,0 +1,52 @@
{ lib
, fetchFromGitHub
, rustPlatform
, wayland
, libxkbcommon
, libGL
, stdenv
, testers
, aphorme
, autoPatchelfHook
}:
rustPlatform.buildRustPackage rec {
pname = "aphorme";
version = "0.1.19";
src = fetchFromGitHub {
owner = "Iaphetes";
repo = "aphorme_launcher";
rev = "refs/tags/v${version}";
hash = "sha256-p1ZIMMDyQWVzoeyHb3sbeV6XQwbIDoQwJU8ynI8hGUI=";
};
cargoHash = "sha256-aFoy5KTapx+5aIzvDwMfjxZQ6WKQtvX3h7rNX4LBeN8=";
# No tests exist
doCheck = false;
buildInputs = [ stdenv.cc.cc.lib ];
nativeBuildInputs = [ autoPatchelfHook ];
runtimeDependencies = [
wayland
libGL
libxkbcommon
];
passthru.tests.version = testers.testVersion {
package = aphorme;
command = "aphorme --version";
version = "aphorme ${version}";
};
meta = {
description = "A program launcher for window managers, written in Rust";
mainProgram = "aphorme";
homepage = "https://github.com/Iaphetes/aphorme_launcher";
license = lib.licenses.gpl3Plus;
maintainers = with lib.maintainers; [ anytimetraveler ];
platforms = lib.platforms.linux;
};
}