mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 14:45:27 +00:00
* added gnuvd, dutch dictionary application
svn path=/nixpkgs/trunk/; revision=17177
This commit is contained in:
parent
8afb39344e
commit
6ddd76f095
15
pkgs/tools/misc/gnuvd/default.nix
Normal file
15
pkgs/tools/misc/gnuvd/default.nix
Normal file
|
@ -0,0 +1,15 @@
|
|||
{stdenv, fetchurl}:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "gnuvd-1.0.10";
|
||||
|
||||
src = fetchurl {
|
||||
url = http://www.djcbsoftware.nl/code/gnuvd/gnuvd-1.0.10.tar.gz ;
|
||||
sha256 = "07mlynarcaal74ibbpqrsd982jmw6xfwgvcp9n6191d4h56a000s";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "gnuvd is a command-line dutch dictionary application.";
|
||||
homepage = http://www.djcbsoftware.nl/code/gnuvd/;
|
||||
};
|
||||
}
|
|
@ -811,6 +811,10 @@ let
|
|||
inherit fetchurl stdenv;
|
||||
});
|
||||
|
||||
gnuvd = import ../tools/misc/gnuvd {
|
||||
inherit fetchurl stdenv;
|
||||
};
|
||||
|
||||
graphviz = import ../tools/graphics/graphviz {
|
||||
inherit fetchurl stdenv pkgconfig libpng libjpeg expat x11 yacc
|
||||
libtool fontconfig gd;
|
||||
|
|
Loading…
Reference in a new issue