nixpkgs/pkgs/tools/misc/gnuvd/default.nix

18 lines
448 B
Nix
Raw Normal View History

{stdenv, fetchurl}:
stdenv.mkDerivation {
2013-12-11 08:24:44 +00:00
name = "gnuvd-1.0.12";
src = fetchurl {
url = https://www.djcbsoftware.nl/code/gnuvd/gnuvd-1.0.12.tar.gz ;
2013-12-11 08:24:44 +00:00
sha256 = "0mpy76a0pxy62zjiihlzmvl4752hiwxhfs8rm1v5zgdr78acxyxz";
};
2018-08-20 18:45:34 +00:00
meta = with stdenv.lib; {
description = "Command-line dutch dictionary application";
homepage = http://www.djcbsoftware.nl/code/gnuvd/;
2018-08-20 18:45:34 +00:00
license = licenses.gpl2;
platforms = platforms.unix;
};
}