nixpkgs/pkgs/tools/misc/gnuvd/default.nix
Silvan Mosberger 57bccb3cb8 treewide: http -> https sources (#42676)
* treewide: http -> https sources

This updates the source urls of all top-level packages from http to
https where possible.

* buildtorrent: fix url and tab -> spaces
2018-06-28 20:43:35 +02:00

17 lines
413 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 = {
description = "Command-line dutch dictionary application";
homepage = http://www.djcbsoftware.nl/code/gnuvd/;
platforms = stdenv.lib.platforms.unix;
};
}