about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/misc/metamorphose2/default.nix
blob: 602d4a032efda266c789808040add8e8480621dd (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
37
38
39
40
41
42
43
{ stdenv, fetchgit, makeWrapper, gettext
, python27, python2Packages
}:

stdenv.mkDerivation rec {
  name    = "metamorphose2-${version}";
  version = "0.9.0beta";

  # exif-py vendored via submodule
  # mutagen vendored via copy
  src = fetchgit {
    url = "https://github.com/metamorphose/metamorphose2.git";
    #rev = "refs/tags/v2.${version}"; #for when wxPython3 support is released
    rev = "d2bdd6a86340b9668e93b35a6a568894c9909d68";
    sha256 = "0ivcb3c8hidrff0ivl4dnwa2p3ihpqjdbvdig8dhg9mm5phdbabn";
  };

  postPatch = ''
    substituteInPlace messages/Makefile \
      --replace "\$(shell which msgfmt)" "${gettext}/bin/msgfmt"
  '';

  postInstall = ''
    rm $out/bin/metamorphose2
    makeWrapper ${python27}/bin/python $out/bin/metamorphose2 \
      --prefix PYTHONPATH : $PYTHONPATH:$(toPythonPath "$out") \
      --add-flags "-O $out/share/metamorphose2/metamorphose2.py -w=3"
  '';

  buildInput = [ gettext python27 ];
  nativeBuildInputs = [ makeWrapper ];
  propagatedBuildInputs = [ python2Packages.wxPython python2Packages.pillow ];

  makeFlags = [ "PREFIX=$(out)" ];

  meta = with stdenv.lib; {
    description = "a graphical mass renaming program for files and folders";
    homepage    = "https://github.com/metamorphose/metamorphose2";
    license     = with licenses; gpl3Plus;
    maintainers = with maintainers; [ ramkromberg ];
    platforms   = with platforms; linux;
  };
}