nixos-config/pkgs/onagre/default.nix

44 lines
888 B
Nix
Raw Normal View History

{ stdenv
, lib
, rustPlatform
, fetchFromGitHub
, cmake
, pkg-config
, freetype
, expat
, wayland
, libX11
, libGL
, libxkbcommon
, vulkan-loader
, pop-launcher
}:
2022-06-17 04:00:47 +00:00
rustPlatform.buildRustPackage rec {
pname = "onagre";
version = "1.0.0-alpha.0";
src = fetchFromGitHub {
owner = "oknozor";
repo = "onagre";
rev = version;
sha256 = "sha256-hP+slfCWgsTgR2ZUjAmqx9f7+DBu3MpSLvaiZhqNK1Q=";
};
cargoSha256 = "sha256-IOhAGrAiT2mnScNP7k7XK9CETUr6BjGdQVdEUvTYQT4=";
nativeBuildInputs = [ cmake pkg-config ];
2022-06-17 04:00:47 +00:00
buildInputs = [ freetype expat wayland libX11 libGL libxkbcommon vulkan-loader ];
2022-06-17 04:00:47 +00:00
postFixup = ''
patchelf --set-rpath ${lib.makeLibraryPath buildInputs} $out/bin/onagre
'';
2022-06-17 04:00:47 +00:00
meta = with lib; {
homepage = "https://github.com/oknozor/onagre";
description = "General application launcher for X/Wayland";
license = licenses.mit;
};
}