uboot: (firmwareOdroidC2/C4) don't invoke patch tool, use patches = [] instead
https://github.com/NixOS/nixpkgs/blob/master/pkgs/stdenv/generic/setup.sh#L948 this can do it nicely. Signed-off-by: Anton Arapov <anton@deadbeef.mx>
This commit is contained in:
commit
56de2bcd43
30691 changed files with 3076956 additions and 0 deletions
51
pkgs/servers/dico/default.nix
Normal file
51
pkgs/servers/dico/default.nix
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
{ fetchurl, lib, stdenv, libtool, gettext, zlib, readline, gsasl
|
||||
, guile, python3, pcre, libffi, groff }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dico";
|
||||
version = "2.11";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
|
||||
sha256 = "sha256-rB+Y4jPQ+srKrBBZ87gThKVZLib9TDCCrtAD9l4lLFo=";
|
||||
};
|
||||
|
||||
hardeningDisable = [ "format" ];
|
||||
|
||||
nativeBuildInputs = [ groff ];
|
||||
|
||||
buildInputs =
|
||||
[ libtool gettext zlib readline gsasl guile python3 pcre libffi ];
|
||||
|
||||
strictDeps = true;
|
||||
|
||||
doCheck = true;
|
||||
|
||||
meta = with lib; {
|
||||
description = "Flexible dictionary server and client implementing RFC 2229";
|
||||
homepage = "https://www.gnu.org/software/dico/";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
platforms = platforms.unix;
|
||||
|
||||
longDescription = ''
|
||||
GNU Dico is a flexible modular implementation of DICT server
|
||||
(RFC 2229). In contrast to another existing servers, it does
|
||||
not depend on particular database format, instead it handles
|
||||
database accesses using loadable modules.
|
||||
|
||||
The package includes several loadable modules for interfacing
|
||||
with various database formats, among them a module for dict.org
|
||||
databases and a module for transparently accessing Wikipedia or
|
||||
Wiktionary sites as a dictionary database.
|
||||
|
||||
New modules can easily be written in C, Guile or Python. The
|
||||
module API is mature and well documented.
|
||||
|
||||
A web interface serving several databases is available.
|
||||
|
||||
The package also includes a console client program for querying
|
||||
remote dictionary servers.
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue