mirror of
https://github.com/foo-dogsquared/nixos-config.git
synced 2025-04-19 06:19:12 +00:00
onagre: remove package
It is available in nixpkgs now.
This commit is contained in:
parent
5fe1a22025
commit
37d672b2f6
@ -58,7 +58,6 @@ let
|
|||||||
mopidy-internetarchive = callPackage ./mopidy-internetarchive.nix { };
|
mopidy-internetarchive = callPackage ./mopidy-internetarchive.nix { };
|
||||||
nautilus-annotations = callPackage ./nautilus-annotations { };
|
nautilus-annotations = callPackage ./nautilus-annotations { };
|
||||||
neuwaita-icon-theme = callPackage ./neuwaita-icon-theme { };
|
neuwaita-icon-theme = callPackage ./neuwaita-icon-theme { };
|
||||||
onagre = callPackage ./onagre { };
|
|
||||||
pop-launcher = callPackage ./pop-launcher.nix { };
|
pop-launcher = callPackage ./pop-launcher.nix { };
|
||||||
pop-launcher-plugin-brightness = callPackage ./pop-launcher-plugin-brightness { };
|
pop-launcher-plugin-brightness = callPackage ./pop-launcher-plugin-brightness { };
|
||||||
pop-launcher-plugin-duckduckgo-bangs =
|
pop-launcher-plugin-duckduckgo-bangs =
|
||||||
|
@ -1,43 +0,0 @@
|
|||||||
{ stdenv
|
|
||||||
, lib
|
|
||||||
, rustPlatform
|
|
||||||
, fetchFromGitHub
|
|
||||||
, cmake
|
|
||||||
, pkg-config
|
|
||||||
, freetype
|
|
||||||
, expat
|
|
||||||
, wayland
|
|
||||||
, libX11
|
|
||||||
, libGL
|
|
||||||
, libxkbcommon
|
|
||||||
, vulkan-loader
|
|
||||||
, pop-launcher
|
|
||||||
}:
|
|
||||||
|
|
||||||
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 ];
|
|
||||||
|
|
||||||
buildInputs = [ freetype expat wayland libX11 libGL libxkbcommon vulkan-loader ];
|
|
||||||
|
|
||||||
postFixup = ''
|
|
||||||
patchelf --set-rpath ${lib.makeLibraryPath buildInputs} $out/bin/onagre
|
|
||||||
'';
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
homepage = "https://github.com/oknozor/onagre";
|
|
||||||
description = "General application launcher for X/Wayland";
|
|
||||||
license = licenses.mit;
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in New Issue
Block a user