nixpkgs/pkgs/data/misc/adapta-backgrounds/default.nix

24 lines
679 B
Nix
Raw Normal View History

2019-07-04 08:49:53 +01:00
{ stdenv, fetchFromGitHub, meson, ninja, pkgconfig, glib }:
2016-12-03 00:59:33 +00:00
stdenv.mkDerivation rec {
2019-07-04 08:49:53 +01:00
pname = "adapta-backgrounds";
version = "0.5.3.1";
2016-12-03 00:59:33 +00:00
src = fetchFromGitHub {
owner = "adapta-project";
repo = "adapta-backgrounds";
rev = version;
2019-07-04 08:49:53 +01:00
sha256 = "04hmbmzf97rsii8gpwy3wkljy5xhxmlsl34d63s6hfy05knclydj";
2016-12-03 00:59:33 +00:00
};
2019-07-04 08:49:53 +01:00
nativeBuildInputs = [ meson ninja pkgconfig glib ];
2016-12-03 00:59:33 +00:00
meta = with stdenv.lib; {
2017-12-22 20:06:43 +00:00
description = "Wallpaper collection for adapta-project";
2019-07-04 08:49:53 +01:00
homepage = "https://github.com/adapta-project/adapta-backgrounds";
2017-12-22 20:06:43 +00:00
license = with licenses; [ gpl2 cc-by-sa-40 ];
2016-12-03 00:59:33 +00:00
platforms = platforms.all;
2019-07-04 08:49:53 +01:00
maintainers = with maintainers; [ romildo ];
2016-12-03 00:59:33 +00:00
};
}