summary refs log tree commit diff
path: root/pkgs/applications/graphics/f-spot/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/applications/graphics/f-spot/default.nix')
-rw-r--r--pkgs/applications/graphics/f-spot/default.nix32
1 files changed, 0 insertions, 32 deletions
diff --git a/pkgs/applications/graphics/f-spot/default.nix b/pkgs/applications/graphics/f-spot/default.nix
deleted file mode 100644
index 291f0adce58..00000000000
--- a/pkgs/applications/graphics/f-spot/default.nix
+++ /dev/null
@@ -1,32 +0,0 @@
-{ stdenv, fetchurl, perl, perlXMLParser, pkgconfig, mono, libexif
-, libgnome, libgnomeui, gtksharp, libjpeg, sqlite, lcms, libgphoto2
-, monoDLLFixer
-, makeWrapper
-}:
-
-stdenv.mkDerivation {
-  name = "f-spot-0.0.10";
-
-  builder = ./builder.sh;
-  
-  inherit makeWrapper;
-
-  src = fetchurl {
-    url = http://tarballs.nixos.org/f-spot-0.0.10.tar.bz2;
-    sha256 = "1hgls6hzvxsnk09j9y6hq10qxsc92i864mdg3gk2cimbkbr0mh8b";
-  };
-
-  patches = [./dllmap.patch];
-
-  buildInputs = [
-    perl perlXMLParser pkgconfig mono libexif
-    libgnome libgnomeui gtksharp libjpeg sqlite
-    lcms libgphoto2
-  ];
-
-  inherit monoDLLFixer gtksharp sqlite libgnomeui;
-
-  meta = {
-    homepage = http://f-spot.org;
-  };
-}