summaryrefslogtreecommitdiffstats
path: root/pkgs/data/misc/adapta-backgrounds/default.nix
blob: 6debaa9ebe220ab8d6e87d8b1a00f155b0b7619a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
{ lib, stdenv, fetchFromGitHub, meson, ninja, pkg-config, glib }:

stdenv.mkDerivation rec {
  pname = "adapta-backgrounds";
  version = "0.5.3.1";

  src = fetchFromGitHub {
    owner = "adapta-project";
    repo = "adapta-backgrounds";
    rev = version;
    sha256 = "04hmbmzf97rsii8gpwy3wkljy5xhxmlsl34d63s6hfy05knclydj";
  };

  nativeBuildInputs = [ meson ninja pkg-config glib ];

  meta = with lib; {
    description = "Wallpaper collection for adapta-project";
    homepage = "https://github.com/adapta-project/adapta-backgrounds";
    license = with licenses; [ gpl2 cc-by-sa-40 ];
    platforms = platforms.all;
    maintainers = with maintainers; [ romildo ];
  };
}