Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: afebfeca44ae
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 621584cdb6ac
Choose a head ref
  • 2 commits
  • 1 file changed
  • 2 contributors

Commits on Apr 24, 2019

  1. Copy the full SHA
    53408bd View commit details

Commits on Apr 28, 2019

  1. Merge pull request #60160 from dtzWill/update/dico-2.9

    dico: 2.7 -> 2.9
    aanderse authored Apr 28, 2019

    Verified

    This commit was signed with the committer’s verified signature.
    vcunat Vladimír Čunát
    Copy the full SHA
    621584c View commit details
Showing with 5 additions and 10 deletions.
  1. +5 −10 pkgs/servers/dico/default.nix
15 changes: 5 additions & 10 deletions pkgs/servers/dico/default.nix
Original file line number Diff line number Diff line change
@@ -2,25 +2,20 @@
, guile, python, pcre, libffi, groff }:

stdenv.mkDerivation rec {
name = "dico-2.7";
pname = "dico";
version = "2.9";

src = fetchurl {
url = "mirror://gnu/dico/${name}.tar.xz";
sha256 = "0dg4aacnmlf3ljssd7dwh8z5644xzq8k1501mbsx8nz8p8a9mbsq";
url = "mirror://gnu/${pname}/${pname}-${version}.tar.xz";
sha256 = "0i9xqhy3h5nlizcmav4mv5ay8ivdgn4l4k0k7fxix3fsc87nijyr";
};

hardeningDisable = [ "format" ];

# XXX: Add support for GNU SASL.
buildInputs =
[ libtool gettext zlib readline gsasl guile python pcre libffi groff ];

# dicod fails to load modules, so the tests fail
doCheck = false;

preBuild = ''
sed -i -e '/gets is a security/d' gnu/stdio.in.h
'';
doCheck = true;

meta = with stdenv.lib; {
description = "Flexible dictionary server and client implementing RFC 2229";