about summary refs log tree commit diff
path: root/nixpkgs/pkgs/applications/office/qnotero/default.nix
blob: ad571cd8b186c05c80c9a40bcbd859b9f7cb2ceb (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
{ stdenv, fetchFromGitHub, python3Packages
}:

python3Packages.buildPythonPackage rec {
  name = "qnotero-${version}";

  version = "1.0.0";

  src = fetchFromGitHub {
    owner = "smathot";
    repo = "qnotero";
    rev = "release/${version}";
    name = "qnotero-${version}-src";
    sha256 = "1d5a9k1llzn9q1qv1bfwc7gfflabh4riplz9jj0hf04b279y1bj0";
  };

  propagatedBuildInputs = [ python3Packages.pyqt4 ];

  patchPhase = ''
      substituteInPlace ./setup.py \
        --replace "/usr/share" "usr/share"

      substituteInPlace ./libqnotero/_themes/default.py \
         --replace "/usr/share" "$out/usr/share"
  '';

  meta = {
    description = "Quick access to Zotero references";
    homepage = http://www.cogsci.nl/software/qnotero;
    license = stdenv.lib.licenses.gpl2;
    platforms = stdenv.lib.platforms.linux;
    maintainers = [ stdenv.lib.maintainers.nico202 ];
  };
}