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

24 lines
584 B
Nix
Raw Normal View History

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