about summary refs log tree commit diff
path: root/pkgs/applications/graphics/emulsion-palette/default.nix
blob: 3c2173826697fce4a6e377b9e7d0bb9a558b3c61 (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
44
45
46
47
48
{ stdenv
, lib
, fetchFromGitHub
, meson
, ninja
, vala
, wrapGAppsHook4
, libadwaita
, json-glib
, libgee
, pkg-config
, gtk3
, desktop-file-utils
}:

stdenv.mkDerivation rec {
  pname = "emulsion-palette";
  version = "3.3.9";

  src = fetchFromGitHub {
    owner = "lainsce";
    repo = "emulsion";
    rev = version;
    sha256 = "sha256-xG7yZKbbNao/pzFhdTMof/lw9K12NKZi47YRaEd65ok=";
  };

  nativeBuildInputs = [ meson ninja pkg-config vala wrapGAppsHook4 ];

  buildInputs = [
    desktop-file-utils
    gtk3 # We're only using it for the gtk-update-icon-cache utility.
    json-glib
    libadwaita
    libgee
  ];

  postFixup = ''
    ln -s $out/bin/io.github.lainsce.Emulsion $out/bin/emulsion-palette
  '';

  meta = with lib; {
    description = "Store your color palettes in an easy way";
    homepage = "https://github.com/lainsce/emulsion";
    license = licenses.gpl3Only;
    platforms = platforms.linux;
    maintainers = with maintainers; [ foo-dogsquared ];
  };
}