18 lines
448 B
Nix
18 lines
448 B
Nix
{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;
|
|
};
|
|
}
|