summary refs log tree commit diff
path: root/pkgs/tools/misc/gnuvd/default.nix
blob: 9369c31fdeb5f8a490fd12c0a49adeda18156b5a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{stdenv, fetchurl}:

stdenv.mkDerivation {
  name = "gnuvd-1.0.12";

  src = fetchurl {
    url = https://www.djcbsoftware.nl/code/gnuvd/gnuvd-1.0.12.tar.gz ;
    sha256 = "0mpy76a0pxy62zjiihlzmvl4752hiwxhfs8rm1v5zgdr78acxyxz";
  };

  meta = with stdenv.lib; {
    description = "Command-line dutch dictionary application";
    homepage = http://www.djcbsoftware.nl/code/gnuvd/;
    license = licenses.gpl2;
    platforms = platforms.unix;
  };
}