mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 23:22:37 +00:00
deepin-wallpapers: init at 1.7.5
This commit is contained in:
parent
9179c1449d
commit
ffa6c12b29
41
pkgs/desktops/deepin/deepin-wallpapers/default.nix
Normal file
41
pkgs/desktops/deepin/deepin-wallpapers/default.nix
Normal file
@ -0,0 +1,41 @@
|
||||
{ stdenv, fetchFromGitHub, dde-api }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "deepin-wallpapers-${version}";
|
||||
version = "1.7.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "linuxdeepin";
|
||||
repo = "deepin-wallpapers";
|
||||
rev = version;
|
||||
sha256 = "0mfjkh81ci0gjwmgycrh32by7v9b73nyvyjbqd29ccpb8bpyyakn";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ dde-api.bin ];
|
||||
|
||||
postPatch = ''
|
||||
sed -i -e "s:/usr/lib/deepin-api:${dde-api.bin}/lib/deepin-api:" Makefile
|
||||
sed -i -e "s:/usr/share/wallpapers:$out/share/wallpapers:" Makefile
|
||||
'';
|
||||
|
||||
installPhase = ''
|
||||
mkdir -p $out/share/wallpapers/deepin
|
||||
cp -a deepin/* deepin-community/* deepin-private/* $out/share/wallpapers/deepin
|
||||
mkdir -p $out/var/cache
|
||||
cp -a image-blur $out/var/cache
|
||||
|
||||
# Suggested by upstream
|
||||
mkdir -p $out/share/backgrounds/deepin
|
||||
ln -s ../../wallpapers/deepin/Hummingbird_by_Shu_Le.jpg $out/share/backgrounds/deepin/desktop.jpg
|
||||
ln -s $(echo -n $out/share/wallpapers/deepin/Hummingbird_by_Shu_Le.jpg | md5sum | cut -d " " -f 1).jpg \
|
||||
$out/var/cache/image-blur/$(echo -n $out/share/backgrounds/deepin/desktop.jpg | md5sum | cut -d " " -f 1).jpg
|
||||
'';
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Wallpapers for Deepin Desktop Environment";
|
||||
homepage = https://github.com/linuxdeepin/deepin-wallpapers;
|
||||
license = licenses.gpl3;
|
||||
platforms = platforms.linux;
|
||||
maintainers = [ maintainers.romildo ];
|
||||
};
|
||||
}
|
@ -19,6 +19,7 @@ let
|
||||
inherit (pkgs.gnome3) libgee vte;
|
||||
wnck = pkgs.libwnck3;
|
||||
};
|
||||
deepin-wallpapers = callPackage ./deepin-wallpapers { };
|
||||
dtkcore = callPackage ./dtkcore { };
|
||||
dtkwm = callPackage ./dtkwm { };
|
||||
dtkwidget = callPackage ./dtkwidget { };
|
||||
|
Loading…
Reference in New Issue
Block a user