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

stdenv.mkDerivation rec {
  pname = "deco";
  version = "0.0.2";

  src = fetchFromGitHub {
    owner = "ebzzry";
    repo = pname;
    rev = "49cded5ad123b0169f47cd0dc0f5420f4b581837";
    sha256 = "19rvqhw0blwga8ck86yy8hj7j1l9hriphlld6yrfd3yip4jprjzz";
  };

  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 stdenv.lib; {
    homepage = "https://github.com/ebzzry/deco";
    description = "A simple root image setter";
    license = licenses.mit;
    maintainers = [ maintainers.ebzzry ];
    platforms = platforms.unix;
  };

  dontBuild = true;
}