mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 06:45:16 +01:00
antiword: added version 0.37
svn path=/nixpkgs/trunk/; revision=28938
This commit is contained in:
parent
a4993d3b23
commit
577ddef0be
2 changed files with 27 additions and 0 deletions
25
pkgs/applications/office/antiword/default.nix
Normal file
25
pkgs/applications/office/antiword/default.nix
Normal file
|
@ -0,0 +1,25 @@
|
|||
{ fetchurl, stdenv }:
|
||||
|
||||
let
|
||||
name = "antiword-0.37";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
inherit name;
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.winfield.demon.nl/linux/${name}.tar.gz";
|
||||
sha256 = "1b7mi1l20jhj09kyh0bq14qzz8vdhhyf35gzwsq43mn6rc7h0b4f";
|
||||
};
|
||||
|
||||
installFlags = "GLOBAL_INSTALL_DIR=$$out/bin GLOBAL_RESOURCES_DIR=$$out/share/antiword";
|
||||
installTargets = "global_install";
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.winfield.demon.nl/";
|
||||
description = "convert MS Word documents to plain text or PostScript";
|
||||
license = stdenv.lib.licenses.gpl2;
|
||||
|
||||
maintainers = [ stdenv.lib.maintainers.simons ];
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
};
|
||||
}
|
|
@ -6121,6 +6121,8 @@ let
|
|||
libstdcpp = gcc33.gcc;
|
||||
};
|
||||
|
||||
antiword = callPackage ../applications/office/antiword {};
|
||||
|
||||
ardour = callPackage ../applications/audio/ardour {
|
||||
inherit (gtkLibs) glib pango gtk glibmm gtkmm;
|
||||
inherit (gnome) libgnomecanvas;
|
||||
|
|
Loading…
Reference in a new issue