evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / in / insync-nautilus / package.nix
blobd0e3b3d934e48dee6cacea84d5dac2a06853946b
2   stdenv,
3   fetchurl,
4   lib,
5   dpkg,
6   nautilus-python,
7   insync-emblem-icons,
8 }:
10 stdenv.mkDerivation (finalAttrs: {
11   pname = "insync-nautilus";
12   version = lib.getVersion insync-emblem-icons;
13   pyproject = true;
15   # Download latest from: https://www.insynchq.com/downloads/linux#nautilus
17   src = fetchurl rec {
18     urls = [
19       "https://cdn.insynchq.com/builds/linux/insync-nautilus_${finalAttrs.version}_all.deb"
20       "https://web.archive.org/web/20240409080611/${builtins.elemAt urls 0}"
21     ];
22     hash = "sha256-aB1/ZzcQH3T1lviMZO8jXbtdbe4TW20f0TAcv4HDOGI=";
23   };
25   nativeBuildInputs = [ dpkg ];
27   buildInputs = [
28     nautilus-python
29     insync-emblem-icons
30   ];
32   installPhase = ''
33     runHook preInstall
34     mkdir -p $out
35     cp -R usr/share $out/
36     cp -rs "${insync-emblem-icons}"/share/icons $out/share/icons
37     runHook postInstall
38   '';
40   meta = with lib; {
41     platforms = [ "x86_64-linux" ];
42     sourceProvenance = with lib.sourceTypes; [ fromSource ];
43     license = licenses.unfree;
44     maintainers = with maintainers; [ hellwolf ];
45     homepage = "https://www.insynchq.com";
46     description = "This package contains the Python extension and icons for integrating Insync with Nautilus";
47   };