about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/search
diff options
context:
space:
mode:
authorAlyssa Ross <hi@alyssa.is>2020-01-11 23:37:02 +0000
committerAlyssa Ross <hi@alyssa.is>2020-01-11 23:41:30 +0000
commit6c557e3f1c28cf87e9fba232811d6875dd1399c1 (patch)
tree035a071d5d8980df6de0fa42e2ef8fc0cce7055e /nixpkgs/pkgs/applications/search
parentda7500bc026e937ac7fce7b50f67a0e1765737a7 (diff)
parente4134747f5666bcab8680aff67fa3b63384f9a0f (diff)
downloadnixlib-6c557e3f1c28cf87e9fba232811d6875dd1399c1.tar
nixlib-6c557e3f1c28cf87e9fba232811d6875dd1399c1.tar.gz
nixlib-6c557e3f1c28cf87e9fba232811d6875dd1399c1.tar.bz2
nixlib-6c557e3f1c28cf87e9fba232811d6875dd1399c1.tar.lz
nixlib-6c557e3f1c28cf87e9fba232811d6875dd1399c1.tar.xz
nixlib-6c557e3f1c28cf87e9fba232811d6875dd1399c1.tar.zst
nixlib-6c557e3f1c28cf87e9fba232811d6875dd1399c1.zip
Merge commit 'e4134747f5666bcab8680aff67fa3b63384f9a0f'
Diffstat (limited to 'nixpkgs/pkgs/applications/search')
-rw-r--r--nixpkgs/pkgs/applications/search/catfish/default.nix67
1 files changed, 0 insertions, 67 deletions
diff --git a/nixpkgs/pkgs/applications/search/catfish/default.nix b/nixpkgs/pkgs/applications/search/catfish/default.nix
deleted file mode 100644
index 983a5153ee2f..000000000000
--- a/nixpkgs/pkgs/applications/search/catfish/default.nix
+++ /dev/null
@@ -1,67 +0,0 @@
-{ stdenv, fetchurl, file, which, intltool, gobject-introspection,
-  findutils, xdg_utils, gnome3, gtk3, pythonPackages, hicolor-icon-theme,
-  wrapGAppsHook
-}:
-
-pythonPackages.buildPythonApplication rec {
-  majorver = "1.4";
-  minorver = "7";
-  version = "${majorver}.${minorver}";
-  pname = "catfish";
-
-  src = fetchurl {
-    url = "https://archive.xfce.org/src/apps/${pname}/${majorver}/${pname}-${version}.tar.bz2";
-    sha256 = "1s97jb1r07ff40jnz8zianpn1f0c67hssn8ywdi2g7njfb4amjj8";
-  };
-
-  nativeBuildInputs = [
-    pythonPackages.distutils_extra
-    file
-    which
-    intltool
-    gobject-introspection
-    wrapGAppsHook
-  ];
-
-  buildInputs = [
-    gtk3
-    gnome3.dconf
-    pythonPackages.pyxdg
-    pythonPackages.ptyprocess
-    pythonPackages.pycairo
-    hicolor-icon-theme
-  ];
-
-  propagatedBuildInputs = [
-    pythonPackages.pygobject3
-    pythonPackages.pexpect
-    xdg_utils
-    findutils
-  ];
-
-  # Explicitly set the prefix dir in "setup.py" because setuptools is
-  # not using "$out" as the prefix when installing catfish data. In
-  # particular the variable "__catfish_data_directory__" in
-  # "catfishconfig.py" is being set to a subdirectory in the python
-  # path in the store.
-  postPatch = ''
-    sed -i "/^        if self.root/i\\        self.prefix = \"$out\"" setup.py
-  '';
-
-  # Disable check because there is no test in the source distribution
-  doCheck = false;
-
-  meta = with stdenv.lib; {
-    homepage = https://docs.xfce.org/apps/catfish/start;
-    description = "A handy file search tool";
-    longDescription = ''
-      Catfish is a handy file searching tool. The interface is
-      intentionally lightweight and simple, using only GTK 3.
-      You can configure it to your needs by using several command line
-      options.
-    '';
-    license = licenses.gpl2Plus;
-    platforms = platforms.linux;
-    maintainers = [ maintainers.romildo ];
-  };
-}