about summary refs log tree commit diff
path: root/pkgs/by-name/pl/plymouth-matrix-theme/package.nix
blob: 69437a7928c6c01f09899311af62b45b8a97d666 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
  stdenvNoCC,
  fetchFromGitHub,
  lib,
  unstableGitUpdater,
}:

stdenvNoCC.mkDerivation {
  pname = "plymouth-matrix-theme";
  version = "0.1.0-unstable-2017-02-19";

  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 ];
  };
}