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

24 lines
603 B
Nix
Raw Normal View History

{ lib, fetchFromGitHub, python2Packages }:
2015-03-08 19:29:41 +03:00
2016-10-17 14:41:18 +03:00
python2Packages.buildPythonApplication rec {
pname = "grin";
version = "1.2.1";
2015-03-08 19:29:41 +03:00
namePrefix = "";
src = fetchFromGitHub {
owner = "rkern";
repo = pname;
rev = "8dd4b5309b3bc04fe9d3e71836420f7d8d4a293f";
sha256 = "0vz2aahwdcy1296g4w3i79dkvmzk9jc2n2zmlcvlg5m3s6h7b6jd";
2015-03-08 19:29:41 +03:00
};
2016-10-17 14:41:18 +03:00
buildInputs = with python2Packages; [ nose ];
2015-03-08 19:29:41 +03:00
meta = {
homepage = "https://github.com/rkern/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
};
}