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

24 lines
657 B
Nix
Raw Normal View History

2016-12-03 00:59:33 +00:00
{ stdenv, fetchFromGitHub, autoreconfHook }:
stdenv.mkDerivation rec {
name = "adapta-backgrounds-${version}";
2017-12-05 22:32:17 +00:00
version = "0.5.1.1";
2016-12-03 00:59:33 +00:00
src = fetchFromGitHub {
owner = "adapta-project";
repo = "adapta-backgrounds";
rev = version;
2017-12-05 22:32:17 +00:00
sha256 = "00gwiraq6c9jh1xl5mmmi5fdj9l3r75ii5wk8jnw856qvrajhxyq";
2016-12-03 00:59:33 +00:00
};
nativeBuildInputs = [ autoreconfHook ];
meta = with stdenv.lib; {
description = "A wallpaper collection for adapta-project";
homepage = https://github.com/adapta-project/adapta-backgrounds;
license = with licenses; [ gpl2 cc-by-sa-30 ];
platforms = platforms.all;
maintainers = [ maintainers.romildo ];
};
}