summary refs log tree commit diff
path: root/pkgs/tools/misc/cope/default.nix
blob: ffa25ba9530b1569db2b742de39c4510086b8dbe (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{ lib, fetchFromGitHub, perl, perlPackages, makeWrapper, }:

perlPackages.buildPerlPackage rec {
  pname = "cope";
  version = "unstable-2015-01-29";

  src = fetchFromGitHub {
    owner = "lotrfan";
    repo = pname;
    rev = "0dc82a939a9498ff80caf472841c279dfe03efae";
    sha256 = "sha256-Tkv26M6YnaUB0nudjKGG482fvUkCobPk0VF1manBCoY=";
  };

  buildInputs = with perlPackages; [ EnvPath FileShareDir IOPty IOStty ListMoreUtils RegexpCommon RegexpIPv6 ];

  postInstall = ''
    mkdir -p $out/bin
    mv $out/lib/perl5/site_perl/${perl.version}/auto/share/dist/Cope/* $out/bin/
    rm -r $out/lib/perl5/site_perl/${perl.version}/auto
  '';

  meta = with lib; {
    description = "A colourful wrapper for terminal programs";
    homepage = "https://github.com/lotrfan/cope";
    license = with licenses; [ artistic1 gpl1Plus ];
    maintainers = with maintainers; [ SuperSandro2000 ];
  };
}