nixpkgs/pkgs/applications/graphics/fbida/default.nix
Michael Raskin 890cf33ef7 Adding fbida, framebuffer image viewer
svn path=/nixpkgs/trunk/; revision=16571
2009-08-04 07:14:43 +00:00

35 lines
777 B
Nix

a :
let
fetchurl = a.fetchurl;
version = a.lib.attrByPath ["version"] "2.07" a;
buildInputs = with a; [
libjpeg libexif giflib libtiff libpng
imagemagick ghostscript which curl
pkgconfig freetype fontconfig
];
in
rec {
src = fetchurl {
url = "http://dl.bytesex.org/releases/fbida/fbida-${version}.tar.gz";
sha256 = "0i6v3fvjc305pfw48sglb5f22lwxldmfch6mjhqbcp7lqkkxw435";
};
inherit buildInputs;
configureFlags = [];
makeFlags = [
"prefix=$out"
"verbose=yes"
];
/* doConfigure should be removed if not needed */
phaseNames = ["doMakeInstall" (a.doPatchShebangs "$out/bin")];
name = "fbida-" + version;
meta = {
description = "Framebuffer image viewing programs";
maintainers = [
];
};
}