about summary refs log tree commit diff
path: root/nixpkgs/pkgs/tools/graphics/didder/default.nix
blob: 10e97e356daf474da48c8cbab60198a420d93aa2 (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
{ lib, buildGoModule, fetchFromGitHub, pandoc }:

buildGoModule rec {
  pname = "didder";
  version = "1.2.0";

  src = fetchFromGitHub {
    owner = "makew0rld";
    repo = pname;
    rev = "v${version}";
    hash = "sha256-S1j2TdV0XCrSc7Ua+SdY3JJoWgnFuAMGhUinTKO2Xh4=";
  };

  vendorHash = "sha256-TEp1YrQquqdEMVvZaNsEB1H/DZsTYmRL257RjQF2JqM=";

  nativeBuildInputs = [ pandoc ];

  postBuild = ''
    make man
  '';

  postInstall = ''
    mkdir -p $out/share/man/man1
    gzip -c didder.1 > $out/share/man/man1/didder.1.gz
  '';

  meta = src.meta // {
    description =
      "An extensive, fast, and accurate command-line image dithering tool";
    license = lib.licenses.gpl3;
    maintainers = with lib.maintainers; [ ehmry ];
    mainProgram = "didder";
  };
}