ocamlPackages.magic: 0.7.3 -> 0.7.4, remove myself from maintainer
[NixPkgs.git] / pkgs / by-name / ad / adapta-backgrounds / package.nix
blob109fe4c512ca575b5aa80d6221043d38563493ca
2   lib,
3   stdenv,
4   fetchFromGitHub,
5   meson,
6   ninja,
7   pkg-config,
8   glib,
9 }:
11 stdenv.mkDerivation rec {
12   pname = "adapta-backgrounds";
13   version = "0.5.3.1";
15   src = fetchFromGitHub {
16     owner = "adapta-project";
17     repo = "adapta-backgrounds";
18     rev = version;
19     sha256 = "04hmbmzf97rsii8gpwy3wkljy5xhxmlsl34d63s6hfy05knclydj";
20   };
22   strictDeps = true;
23   nativeBuildInputs = [
24     meson
25     ninja
26     pkg-config
27   ];
28   buildInputs = [ glib ];
30   meta = with lib; {
31     description = "Wallpaper collection for adapta-project";
32     homepage = "https://github.com/adapta-project/adapta-backgrounds";
33     license = with licenses; [
34       gpl2
35       cc-by-sa-40
36     ];
37     platforms = platforms.all;
38     maintainers = with maintainers; [ romildo ];
39   };