about summary refs log tree commit diff
path: root/pkgs/tools/text/grin/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'pkgs/tools/text/grin/default.nix')
-rw-r--r--pkgs/tools/text/grin/default.nix34
1 files changed, 0 insertions, 34 deletions
diff --git a/pkgs/tools/text/grin/default.nix b/pkgs/tools/text/grin/default.nix
deleted file mode 100644
index 5217451a984b..000000000000
--- a/pkgs/tools/text/grin/default.nix
+++ /dev/null
@@ -1,34 +0,0 @@
-{ lib, fetchFromGitHub, fetchpatch, python3Packages }:
-
-python3Packages.buildPythonApplication rec {
-  pname = "grin";
-  version = "1.3.0";
-  namePrefix = "";
-
-  src = fetchFromGitHub {
-    owner = "matthew-brett";
-    repo = pname;
-    rev = "1.3.0";
-    hash = "sha256-exKUy7LaDtpq0rJLSuNYsIcynpB4QLtLIE6T/ncB7RQ=";
-  };
-
-  patches = [
-    # https://github.com/matthew-brett/grin/pull/4
-    (fetchpatch {
-      name = "replace-nose-with-nose3.patch";
-      url = "https://github.com/matthew-brett/grin/commit/ba473fa4f5da1b337ee80d7d31772a4e41ffa62d.patch";
-      hash = "sha256-CnWHynKSsXYjSsTLdPuwpcIndrCdq3cQYS8teg5EM0A=";
-    })
-  ];
-
-  nativeCheckInputs = with python3Packages; [
-    nose3
-  ];
-
-  meta = {
-    homepage = "https://github.com/matthew-brett/grin";
-    description = "Grep program configured the way I like it";
-    platforms = lib.platforms.all;
-    maintainers = [ lib.maintainers.sjagoe ];
-  };
-}