mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-13 05:05:29 +03:00
commit
9e12b42be3
3 changed files with 49 additions and 0 deletions
|
@ -3401,6 +3401,12 @@
|
||||||
githubId = 103082;
|
githubId = 103082;
|
||||||
name = "Ed Brindley";
|
name = "Ed Brindley";
|
||||||
};
|
};
|
||||||
|
elliot = {
|
||||||
|
email = "hack00mind@gmail.com";
|
||||||
|
github = "Eliot00";
|
||||||
|
githubId = 18375468;
|
||||||
|
name = "Elliot Xu";
|
||||||
|
};
|
||||||
elliottvillars = {
|
elliottvillars = {
|
||||||
email = "elliottvillars@gmail.com";
|
email = "elliottvillars@gmail.com";
|
||||||
github = "elliottvillars";
|
github = "elliottvillars";
|
||||||
|
|
39
pkgs/applications/misc/inherd-quake/default.nix
Normal file
39
pkgs/applications/misc/inherd-quake/default.nix
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
{ lib
|
||||||
|
, fetchFromGitHub
|
||||||
|
, rustPlatform
|
||||||
|
, pkg-config
|
||||||
|
, openssl
|
||||||
|
, stdenv
|
||||||
|
, CoreServices
|
||||||
|
, Security
|
||||||
|
}:
|
||||||
|
|
||||||
|
rustPlatform.buildRustPackage rec {
|
||||||
|
pname = "quake";
|
||||||
|
version = "0.3.0";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "phodal";
|
||||||
|
repo = pname;
|
||||||
|
rev = "v${version}";
|
||||||
|
sha256 = "1f7k68g18g3dpnrsmhgmz753bly1i3f4lmsljiyp9ap0c6w8ahgg";
|
||||||
|
};
|
||||||
|
|
||||||
|
cargoSha256 = "1yqj9rq770j116138bqn4ycggy13vvym1cz50myfddb9rjjzafrl";
|
||||||
|
|
||||||
|
nativeBuildInputs = [ pkg-config ];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
openssl
|
||||||
|
] ++ lib.optionals stdenv.isDarwin [
|
||||||
|
CoreServices
|
||||||
|
Security
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with lib; {
|
||||||
|
description = "A knowledge management meta-framework for geeks";
|
||||||
|
homepage = "https://github.com/phodal/quake";
|
||||||
|
license = licenses.mit;
|
||||||
|
maintainers = [ maintainers.elliot ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -1917,6 +1917,10 @@ with pkgs;
|
||||||
|
|
||||||
passExtensions = recurseIntoAttrs pass.extensions;
|
passExtensions = recurseIntoAttrs pass.extensions;
|
||||||
|
|
||||||
|
inherd-quake = callPackage ../applications/misc/inherd-quake {
|
||||||
|
inherit (darwin.apple_sdk.frameworks) CoreServices Security;
|
||||||
|
};
|
||||||
|
|
||||||
xjadeo = callPackage ../tools/video/xjadeo { };
|
xjadeo = callPackage ../tools/video/xjadeo { };
|
||||||
|
|
||||||
asc-key-to-qr-code-gif = callPackage ../tools/security/asc-key-to-qr-code-gif { };
|
asc-key-to-qr-code-gif = callPackage ../tools/security/asc-key-to-qr-code-gif { };
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue