nixpkgs/pkgs/tools/text/grin/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
584 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python3Packages }:
2015-03-08 19:29:41 +03:00
python3Packages.buildPythonApplication rec {
pname = "grin";
version = "1.3.0";
2015-03-08 19:29:41 +03:00
namePrefix = "";
src = fetchFromGitHub {
owner = "matthew-brett";
repo = pname;
rev = "1.3.0";
sha256 = "057d05vzx4sf415vnh3qj2g351xhb3illjxjs9mdl3nsnb5r84kv";
2015-03-08 19:29:41 +03:00
};
buildInputs = with python3Packages; [ nose ];
2015-03-08 19:29:41 +03:00
meta = {
homepage = "https://github.com/matthew-brett/grin";
2015-04-28 11:54:58 +03:00
description = "A grep program configured the way I like it";
2021-01-15 12:19:50 +03:00
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.sjagoe ];
2015-03-08 19:29:41 +03:00
};
}