Skip to content

nix-utilities/dict-gcide

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Dict GCIDE

Nix package for GNU version of the Collaborative International Dictionary of English for dictd et al.

Byte size of Dict Gcide Open Issues Open Pull Requests Latest commits License



Requirements

Install the NixOS and/or Nix package manager via official instructions;

https://nixos.org/nixos/manual/


Usage

This repository may be installed, and managed, via Nix Flake

flake.nix (example)

{
  inputs = {
    nixpkgs.url = "github:NixOs/nixpkgs-24.05";

    dict-gcide.url = "github:nix-utilities/dict-gcide-main";
  };
  outputs = { self, nixpkgs, dict-gcide }@attrs: {
    nixosConfigurations."your-host-name" = nixpkgs.lib.nixosSystem {
      system = "x86_64-linux";
      specialArgs = attrs;
      modules = [ ./configuration.nix ];
    };
  };
}

configuration.nix (snipet)

{ config, pkgs, nixpkgs, dict-gcide, ... }:

{
  ## ... other configurations redacted...

  ## Add `dict-gcide` to `services.dictd.DBs` list
  services.dictd = {
    enable = true;
    DBs = [
      (pkgs.callPackage  dict-gcide { inherit pkgs; })
    ];
  };
}

Then rebuild as usual;

sudo nixos-rebuild switch --flake '.#'

Contributing

Options for contributing to dict-gcide and nix-utilities


Forking

Start making a Fork of this repository to an account that you have write permissions for.

cd ~/git/hub/nix-utilities/dict-gcide

git remote add fork [email protected]:<NAME>/dict-gcide.git
  • Commit your changes and push to your fork, eg. to fix an issue...
cd ~/git/hub/nix-utilities/dict-gcide


git commit -F- <<'EOF'
:bug: Fixes #42 Issue


**Edits**


- `<SCRIPT-NAME>` script, fixes some bug reported in issue
EOF


git push fork main

Note, the -u option may be used to set fork as the default remote, eg. git push -u fork main however, this will also default the fork remote for pulling from too! Meaning that pulling updates from origin must be done explicitly, eg. git pull origin main

  • Then on GitHub submit a Pull Request through the Web-UI, the URL syntax is https://github.com/<NAME>/<REPO>/pull/new/<BRANCH>

Note; to decrease the chances of your Pull Request needing modifications before being accepted, please check the dot-github repository for detailed contributing guidelines.


Sponsor

Thanks for even considering it!

Via Liberapay you may sponsor__shields_io__liberapay on a repeating basis.

Regardless of if you're able to financially support projects such as dict-gcide that nix-utilities maintains, please consider sharing projects that are useful with others, because one of the goals of maintaining Open Source repositories is to provide value to the community.


Attribution


License

Nix package for GNU version of the Collaborative International Dictionary of English for dictd et al.
Copyright (C) 2025 S0AndS0

This program is free software: you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation, either version 3 of the License, or (at your option) any later
version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
PARTICULAR PURPOSE.  See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with
this program.  If not, see <https://www.gnu.org/licenses/>.

For further details review full length version of GPL-3.0 License.

About

Nix package for GNU version of the Collaborative International Dictionary of English for dictd et al

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published