mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-23 23:43:30 +00:00
Adding minidjvu
svn path=/nixpkgs/trunk/; revision=26957
This commit is contained in:
parent
9a0a0c92c7
commit
11c0e3976e
22
pkgs/applications/graphics/minidjvu/default.nix
Normal file
22
pkgs/applications/graphics/minidjvu/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{stdenv, fetchurl, libtiff, gettext }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "minidjvu-0.8";
|
||||
src = fetchurl {
|
||||
url = mirror://sourceforge/minidjvu/minidjvu-0.8.tar.gz;
|
||||
sha256 = "0jmpvy4g68k6xgplj9zsl6brg6vi81mx3nx2x9hfbr1f4zh95j79";
|
||||
};
|
||||
|
||||
patchPhase = ''
|
||||
sed -i s,/usr/bin/gzip,gzip, Makefile.in
|
||||
'';
|
||||
|
||||
buildInputs = [ libtiff gettext];
|
||||
|
||||
meta = {
|
||||
homepage = http://djvu.sourceforge.net/djview4.html;
|
||||
description = "Black-and-white djvu page encoder and decoder that use interpage information";
|
||||
license = "GPLv2+";
|
||||
maintainers = [ stdenv.lib.maintainers.viric ];
|
||||
};
|
||||
}
|
@ -6518,6 +6518,8 @@ let
|
||||
|
||||
minicom = callPackage ../tools/misc/minicom { };
|
||||
|
||||
minidjvu = callPackage ../applications/graphics/minidjvu { };
|
||||
|
||||
mmex = callPackage ../applications/office/mmex { };
|
||||
|
||||
monodevelop = callPackage ../applications/editors/monodevelop {
|
||||
|
Loading…
Reference in New Issue
Block a user