pkgs(dioxionary): Delete the packaging function of dioxionary
This commit is contained in:
parent
dc6f0ad7aa
commit
e50aa81b8c
6 changed files with 0 additions and 3710 deletions
File diff suppressed because it is too large
Load diff
|
|
@ -64,31 +64,6 @@
|
||||||
},
|
},
|
||||||
"version": "f49bd905cff72d32d62c209224353865436f9a13"
|
"version": "f49bd905cff72d32d62c209224353865436f9a13"
|
||||||
},
|
},
|
||||||
"dioxionary": {
|
|
||||||
"cargoLocks": {
|
|
||||||
"./Cargo.lock": [
|
|
||||||
"./dioxionary-4db80d458ff7494967c94ebb1db596abba0775b2/./Cargo.lock",
|
|
||||||
{}
|
|
||||||
]
|
|
||||||
},
|
|
||||||
"date": "2025-04-07",
|
|
||||||
"extract": null,
|
|
||||||
"name": "dioxionary",
|
|
||||||
"passthru": null,
|
|
||||||
"pinned": false,
|
|
||||||
"src": {
|
|
||||||
"deepClone": false,
|
|
||||||
"fetchSubmodules": false,
|
|
||||||
"leaveDotGit": false,
|
|
||||||
"name": null,
|
|
||||||
"rev": "4db80d458ff7494967c94ebb1db596abba0775b2",
|
|
||||||
"sha256": "sha256-H5uMTtDX9hBV36MtiPPlHPaL//WM11J5kdtEhyJBZIU=",
|
|
||||||
"sparseCheckout": [],
|
|
||||||
"type": "git",
|
|
||||||
"url": "https://github.com/vaaandark/dioxionary.git"
|
|
||||||
},
|
|
||||||
"version": "4db80d458ff7494967c94ebb1db596abba0775b2"
|
|
||||||
},
|
|
||||||
"juicity": {
|
"juicity": {
|
||||||
"cargoLocks": null,
|
"cargoLocks": null,
|
||||||
"date": "2025-02-20",
|
"date": "2025-02-20",
|
||||||
|
|
|
||||||
|
|
@ -40,26 +40,6 @@
|
||||||
};
|
};
|
||||||
date = "2025-06-07";
|
date = "2025-06-07";
|
||||||
};
|
};
|
||||||
dioxionary = {
|
|
||||||
pname = "dioxionary";
|
|
||||||
version = "4db80d458ff7494967c94ebb1db596abba0775b2";
|
|
||||||
src = fetchgit {
|
|
||||||
url = "https://github.com/vaaandark/dioxionary.git";
|
|
||||||
rev = "4db80d458ff7494967c94ebb1db596abba0775b2";
|
|
||||||
fetchSubmodules = false;
|
|
||||||
deepClone = false;
|
|
||||||
leaveDotGit = false;
|
|
||||||
sparseCheckout = [ ];
|
|
||||||
sha256 = "sha256-H5uMTtDX9hBV36MtiPPlHPaL//WM11J5kdtEhyJBZIU=";
|
|
||||||
};
|
|
||||||
cargoLock."./Cargo.lock" = {
|
|
||||||
lockFile = ./dioxionary-4db80d458ff7494967c94ebb1db596abba0775b2/./Cargo.lock;
|
|
||||||
outputHashes = {
|
|
||||||
|
|
||||||
};
|
|
||||||
};
|
|
||||||
date = "2025-04-07";
|
|
||||||
};
|
|
||||||
juicity = {
|
juicity = {
|
||||||
pname = "juicity";
|
pname = "juicity";
|
||||||
version = "4c5e8bd948ba2f72a0dd38681cf13ae532f6c9f5";
|
version = "4c5e8bd948ba2f72a0dd38681cf13ae532f6c9f5";
|
||||||
|
|
|
||||||
|
|
@ -14,7 +14,6 @@ in
|
||||||
helix = callPackage ./helix {};
|
helix = callPackage ./helix {};
|
||||||
juicity = callPackage ./juicity.nix {};
|
juicity = callPackage ./juicity.nix {};
|
||||||
rime-ice = callPackage ./rime-ice.nix {};
|
rime-ice = callPackage ./rime-ice.nix {};
|
||||||
dioxionary = callPackage ./dioxionary.nix {};
|
|
||||||
spotifyx = callPackage ./spotifyx.nix {};
|
spotifyx = callPackage ./spotifyx.nix {};
|
||||||
radicle-explorer = callPackage ./radicle-explorer.nix {};
|
radicle-explorer = callPackage ./radicle-explorer.nix {};
|
||||||
TrackersListCollection = callPackage ./TrackersListCollection.nix {};
|
TrackersListCollection = callPackage ./TrackersListCollection.nix {};
|
||||||
|
|
|
||||||
|
|
@ -1,35 +0,0 @@
|
||||||
{
|
|
||||||
srcs,
|
|
||||||
rustPlatform,
|
|
||||||
pkg-config,
|
|
||||||
openssl,
|
|
||||||
installShellFiles,
|
|
||||||
lib,
|
|
||||||
}: let
|
|
||||||
src = srcs.dioxionary;
|
|
||||||
in
|
|
||||||
rustPlatform.buildRustPackage {
|
|
||||||
inherit (src) pname src;
|
|
||||||
version = "${src.version}";
|
|
||||||
cargoLock = src.cargoLock."./Cargo.lock";
|
|
||||||
nativeBuildInputs = [
|
|
||||||
pkg-config
|
|
||||||
installShellFiles
|
|
||||||
];
|
|
||||||
buildInputs = [openssl.dev];
|
|
||||||
doCheck = false;
|
|
||||||
postInstall = ''
|
|
||||||
installShellCompletion --cmd dioxionary \
|
|
||||||
--bash <($out/bin/dioxionary completion bash) \
|
|
||||||
--zsh <($out/bin/dioxionary completion zsh) \
|
|
||||||
--fish <($out/bin/dioxionary completion fish)
|
|
||||||
'';
|
|
||||||
meta = {
|
|
||||||
description = "Rusty stardict. Enables terminal-based word lookup and vocabulary memorization using offline or online dictionaries";
|
|
||||||
homepage = "https://github.com/vaaandark/dioxionary";
|
|
||||||
changelog = "https://github.com/vaaandark/dioxionary/releases/tag/${src.version}";
|
|
||||||
license = lib.licenses.gpl2Only;
|
|
||||||
maintainers = with lib.maintainers; [ulic-youthlic];
|
|
||||||
mainProgram = "dioxionary";
|
|
||||||
};
|
|
||||||
}
|
|
||||||
|
|
@ -11,11 +11,6 @@ passthru.name = "idris"
|
||||||
src.git = "https://github.com/iDvel/rime-ice.git"
|
src.git = "https://github.com/iDvel/rime-ice.git"
|
||||||
fetch.github = "iDvel/rime-ice"
|
fetch.github = "iDvel/rime-ice"
|
||||||
|
|
||||||
[dioxionary]
|
|
||||||
src.git = "https://github.com/vaaandark/dioxionary.git"
|
|
||||||
fetch.git = "https://github.com/vaaandark/dioxionary.git"
|
|
||||||
cargo_locks = ["./Cargo.lock"]
|
|
||||||
|
|
||||||
[noto-serif-cjk]
|
[noto-serif-cjk]
|
||||||
src.github = "notofonts/noto-cjk"
|
src.github = "notofonts/noto-cjk"
|
||||||
fetch.github = "notofonts/noto-cjk"
|
fetch.github = "notofonts/noto-cjk"
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue