mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
Merge pull request #312459 from JohnRTitor/matrix-plymouth-theme
plymouth-matrix-theme: init at 0.1.0-unstable-19-02-2017
This commit is contained in:
commit
f81c44e8ca
1 changed files with 48 additions and 0 deletions
48
pkgs/by-name/pl/plymouth-matrix-theme/package.nix
Normal file
48
pkgs/by-name/pl/plymouth-matrix-theme/package.nix
Normal file
|
@ -0,0 +1,48 @@
|
||||||
|
{
|
||||||
|
stdenvNoCC,
|
||||||
|
fetchFromGitHub,
|
||||||
|
lib,
|
||||||
|
unstableGitUpdater,
|
||||||
|
}:
|
||||||
|
|
||||||
|
stdenvNoCC.mkDerivation {
|
||||||
|
pname = "plymouth-matrix-theme";
|
||||||
|
version = "0.1.0-unstable-19-02-2017";
|
||||||
|
|
||||||
|
src = fetchFromGitHub {
|
||||||
|
owner = "storax";
|
||||||
|
repo = "plymouth-matrix-theme";
|
||||||
|
rev = "b2268f25dea7537ed5709b00d5a83b3600265c54";
|
||||||
|
hash = "sha256-JmMmpw1By5U6OTaSPnJOZZxrieSnXivMmdt/JPazjpI=";
|
||||||
|
};
|
||||||
|
|
||||||
|
postPatch = ''
|
||||||
|
# Remove not needed files
|
||||||
|
rm README.rst LICENSE Makefile
|
||||||
|
'';
|
||||||
|
|
||||||
|
dontBuild = true;
|
||||||
|
|
||||||
|
installPhase = ''
|
||||||
|
runHook preInstall
|
||||||
|
mkdir -p $out/share/plymouth/themes/matrix
|
||||||
|
cp * $out/share/plymouth/themes/matrix
|
||||||
|
find $out/share/plymouth/themes/ -name \*.plymouth -exec sed -i "s@\/usr\/@$out\/@" {} \;
|
||||||
|
runHook postInstall
|
||||||
|
'';
|
||||||
|
|
||||||
|
passthru.updateScript = unstableGitUpdater;
|
||||||
|
|
||||||
|
meta = {
|
||||||
|
description = "Plymouth boot theme inspired by Matrix";
|
||||||
|
longDescription = ''
|
||||||
|
A very simple boot animation that emulates
|
||||||
|
Trinity hacking Neo's computer at the
|
||||||
|
beginning of The Matrix (1999).
|
||||||
|
'';
|
||||||
|
homepage = "https://github.com/storax/plymouth-matrix-theme";
|
||||||
|
license = lib.licenses.gpl3;
|
||||||
|
platforms = lib.platforms.linux;
|
||||||
|
maintainers = with lib.maintainers; [ johnrtitor ];
|
||||||
|
};
|
||||||
|
}
|
Loading…
Reference in a new issue