summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/graphics
diff options
context:
space:
mode:
authorMichael Raskin <7c6f434c@mail.ru>2009-08-04 07:14:43 +0000
committerMichael Raskin <7c6f434c@mail.ru>2009-08-04 07:14:43 +0000
commit890cf33ef7133af0d66f52183474acf51e878e47 (patch)
tree4873956a569dd19eaca9f257152dde3923249aff /pkgs/applications/graphics
parent15ac66ea0bcc92b186458f14b87f3fcaf1c1749d (diff)
Adding fbida, framebuffer image viewer
svn path=/nixpkgs/trunk/; revision=16571
Diffstat (limited to 'pkgs/applications/graphics')
-rw-r--r--pkgs/applications/graphics/fbida/default.nix34
1 files changed, 34 insertions, 0 deletions
diff --git a/pkgs/applications/graphics/fbida/default.nix b/pkgs/applications/graphics/fbida/default.nix
new file mode 100644
index 000000000000..f7482e0bfe75
--- /dev/null
+++ b/pkgs/applications/graphics/fbida/default.nix
@@ -0,0 +1,34 @@
+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 = [
+ ];
+ };
+}