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

18 lines
452 B
Nix
Raw Normal View History

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