forked from mirrors/nixpkgs
gnome-backgrounds: new package
This commit is contained in:
parent
29bc5feb1d
commit
5174e6db80
|
@ -57,6 +57,7 @@ in {
|
|||
gnome3.yelp
|
||||
pkgs.glib_networking
|
||||
pkgs.ibus
|
||||
gnome3.gnome-backgrounds
|
||||
gnome3.gnome_shell
|
||||
gnome3.gnome_settings_daemon
|
||||
gnome3.gnome_terminal
|
||||
|
|
16
pkgs/desktops/gnome-3/core/gnome-backgrounds/default.nix
Normal file
16
pkgs/desktops/gnome-3/core/gnome-backgrounds/default.nix
Normal file
|
@ -0,0 +1,16 @@
|
|||
{ stdenv, fetchurl, pkgconfig, intltool }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "gnome-backgrounds-3.12.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnome/sources/gnome-backgrounds/3.12/${name}.tar.xz";
|
||||
sha256 = "77a893025a0bed5753631a810154cad53fb2cf34c8ee988016217cd8862eab42";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkgconfig intltool ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
|
@ -38,6 +38,8 @@ rec {
|
|||
|
||||
gjs = callPackage ./core/gjs { };
|
||||
|
||||
gnome-backgrounds = callPackage ./core/gnome-backgrounds { };
|
||||
|
||||
gnome_control_center = callPackage ./core/gnome-control-center { };
|
||||
|
||||
gnome-calculator = callPackage ./core/gnome-calculator { };
|
||||
|
|
Loading…
Reference in a new issue