forked from mirrors/nixpkgs
Merge pull request #223521 from jfvillablanca/onagre
This commit is contained in:
commit
83f219e9e2
|
@ -7101,6 +7101,13 @@
|
||||||
fingerprint = "7EB1 C02A B62B B464 6D7C E4AE D1D0 9DE1 69EA 19A0";
|
fingerprint = "7EB1 C02A B62B B464 6D7C E4AE D1D0 9DE1 69EA 19A0";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
|
jfvillablanca = {
|
||||||
|
email = "jmfv.dev@gmail.com";
|
||||||
|
matrix = "@jfvillablanca:matrix.org";
|
||||||
|
github = "jfvillablanca";
|
||||||
|
githubId = 31008330;
|
||||||
|
name = "Jann Marc Villablanca";
|
||||||
|
};
|
||||||
jgart = {
|
jgart = {
|
||||||
email = "jgart@dismail.de";
|
email = "jgart@dismail.de";
|
||||||
github = "jgarte";
|
github = "jgarte";
|
||||||
|
|
5128
pkgs/applications/misc/onagre/Cargo.lock
generated
Normal file
5128
pkgs/applications/misc/onagre/Cargo.lock
generated
Normal file
File diff suppressed because it is too large
Load diff
40
pkgs/applications/misc/onagre/default.nix
Normal file
40
pkgs/applications/misc/onagre/default.nix
Normal file
|
@ -0,0 +1,40 @@
|
||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, cmake
|
||||||
|
, pkgconf
|
||||||
|
, freetype
|
||||||
|
, expat
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "onagre";
|
||||||
|
version = "1.0.0-alpha.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "oknozor";
|
||||||
|
repo = pname;
|
||||||
|
rev = version;
|
||||||
|
hash = "sha256-hP+slfCWgsTgR2ZUjAmqx9f7+DBu3MpSLvaiZhqNK1Q=";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoLock = {
|
||||||
|
lockFile = ./Cargo.lock;
|
||||||
|
outputHashes = {
|
||||||
|
"pop-launcher-1.2.1" = "sha256-LeKaJIvooD2aUlY113P0mzxOcj63sGkrA0SIccNqCLY=";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "sha256-IOhAGrAiT2mnScNP7k7XK9CETUr6BjGdQVdEUvTYQT4=";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake pkgconf ];
|
||||||
|
buildInputs = [ freetype expat ];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A general purpose application launcher for X and wayland inspired by rofi/wofi and alfred";
|
||||||
|
homepage = "https://github.com/oknozor/onagre";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.jfvillablanca ];
|
||||||
|
platforms = platforms.linux;
|
||||||
|
};
|
||||||
|
}
|
|
@ -25334,6 +25334,8 @@ with pkgs;
|
||||||
|
|
||||||
olaris-server = callPackage ../servers/olaris { };
|
olaris-server = callPackage ../servers/olaris { };
|
||||||
|
|
||||||
|
onagre = callPackage ../applications/misc/onagre { };
|
||||||
|
|
||||||
onlyoffice-documentserver = callPackage ../servers/onlyoffice-documentserver { };
|
onlyoffice-documentserver = callPackage ../servers/onlyoffice-documentserver { };
|
||||||
|
|
||||||
outline = callPackage ../servers/web-apps/outline (lib.fix (super: {
|
outline = callPackage ../servers/web-apps/outline (lib.fix (super: {
|
||||||
|
|
Loading…
Reference in a new issue