about summary refs log tree commit diff
path: root/pkgs/applications/misc/deco/default.nix
blob: 5efa22e8843c97f7d6c6dcb4f745c056185e8ee0 (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
{ lib, stdenv, fetchFromGitHub, scsh, feh, xorg }:

stdenv.mkDerivation rec {
  pname = "deco";
  version = "unstable-2019-04-03";

  src = fetchFromGitHub {
    owner = "ebzzry";
    repo = pname;
    rev = "dd8ec7905bc85d085eb2ee3bddabea451054288c";
    sha256 = "sha256-/3GeNvWOCRPOYTUbodXDUxR5QVDEyx6x2Jt5PxsPdvk=";
  };

  installPhase = ''
    mkdir -p $out/bin
    cp ${pname} $out/bin
    chmod +x $out/bin/${pname}
  '';

  postFixup = ''
    substituteInPlace $out/bin/deco --replace "/usr/bin/env scsh" "${scsh}/bin/scsh"
    substituteInPlace $out/bin/deco --replace "feh" "${feh}/bin/feh"
    substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xorg.xdpyinfo}/bin/xdpyinfo"
  '';

  meta = with lib; {
    homepage = "https://github.com/ebzzry/deco";
    description = "Simple root image setter";
    license = licenses.mit;
    maintainers = [ maintainers.ebzzry ];
    platforms = platforms.unix;
    mainProgram = "deco";
  };

  dontBuild = true;
}