depot/third_party/nixpkgs/pkgs/tools/text/grin/default.nix
Default email ae91cbe6cc Project import generated by Copybara.
GitOrigin-RevId: 536fe36e23ab0fc8b7f35c24603422eee9fc17a2
2021-02-05 18:12:51 +01:00

24 lines
641 B
Nix

{ lib, fetchFromGitHub, python2Packages }:
python2Packages.buildPythonApplication rec {
program = "grin";
version = "1.2.1";
name = "${program}-${version}";
namePrefix = "";
src = fetchFromGitHub {
owner = "rkern";
repo = program;
rev = "8dd4b5309b3bc04fe9d3e71836420f7d8d4a293f";
sha256 = "0vz2aahwdcy1296g4w3i79dkvmzk9jc2n2zmlcvlg5m3s6h7b6jd";
};
buildInputs = with python2Packages; [ nose ];
meta = {
homepage = "https://github.com/rkern/grin";
description = "A grep program configured the way I like it";
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.sjagoe ];
};
}