about summary refs log tree commit diff
path: root/pkgs/by-name/ge/gema/package.nix
blob: 564941444dd74c35bea1006bfe339fe65fb9eb48 (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
29
30
31
32
33
34
35
36
{ lib
, stdenv
, fetchurl
, installShellFiles
}:

stdenv.mkDerivation (finalAttrs: {
  pname = "gema";
  version = "2.0";

  src = fetchurl {
    url = "https://sourceforge.net/projects/gema/files/gema/gema-${finalAttrs.version}/gema-${finalAttrs.version}-source.tar.gz";
    hash = "sha256-c7qxgZYk/QaqocjRXVlgJxUWCgf3T1JBY7v9Fg9YfIU=";
  };

  makeFlags = [ "--directory=src" ];

  nativeBuildInputs = [ installShellFiles ];

  installPhase = ''
    runHook preInstall
    install -Dm755 src/gema -t $out/bin
    installManPage doc/gema.1
    runHook postInstall
  '';

  meta = {
    description = "General purpose text processing utility based on the concept of pattern matching.";
    longDescription = "Reads an input file and copies it to an output file transforming the data as specified by the patterns defined by the user.";
    homepage = "https://gema.sourceforge.net/";
    license = lib.licenses.mit;
    mainProgram = "gema";
    maintainers = with lib.maintainers; [ quag ];
    platforms = lib.platforms.unix;
  };
})