mirror of
https://github.com/zoriya/flake.git
synced 2025-12-06 06:36:19 +00:00
27 lines
654 B
Nix
27 lines
654 B
Nix
{ pkgs ? import <nixpkgs> {} }:
|
|
pkgs.stdenv.mkDerivation {
|
|
pname = "adi1090x-plymouth";
|
|
version = "0.0.1";
|
|
|
|
src = builtins.fetchGit {
|
|
url = "https://github.com/adi1090x/plymouth-themes";
|
|
rev = "bf2f570bee8e84c5c20caac353cbe1d811a4745f";
|
|
};
|
|
|
|
buildInputs = [
|
|
pkgs.git
|
|
];
|
|
|
|
configurePhase = ''
|
|
mkdir -p $out/share/plymouth/themes/
|
|
'';
|
|
|
|
buildPhase = ''
|
|
'';
|
|
|
|
installPhase = ''
|
|
cp -r pack_1/colorful_loop $out/share/plymouth/themes
|
|
cat pack_1/colorful_loop/colorful_loop.plymouth | sed "s@\/usr\/@$out\/@" > $out/share/plymouth/themes/colorful_loop/colorful_loop.plymouth
|
|
'';
|
|
}
|