2018-03-13 11:16:03 +01:00
|
|
|
{ stdenv, fetchFromGitHub, scsh, feh, xorg }:
|
2016-03-24 13:34:01 +01:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "deco";
|
2019-03-20 12:33:38 +01:00
|
|
|
version = "0.0.2";
|
2016-03-24 13:34:01 +01:00
|
|
|
name = "${pname}-${version}";
|
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "ebzzry";
|
|
|
|
repo = pname;
|
2019-03-20 12:33:38 +01:00
|
|
|
rev = "49cded5ad123b0169f47cd0dc0f5420f4b581837";
|
|
|
|
sha256 = "19rvqhw0blwga8ck86yy8hj7j1l9hriphlld6yrfd3yip4jprjzz";
|
2016-03-24 13:34:01 +01:00
|
|
|
};
|
|
|
|
|
|
|
|
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"
|
2018-03-13 11:16:03 +01:00
|
|
|
substituteInPlace $out/bin/deco --replace "xdpyinfo" "${xorg.xdpyinfo}/bin/xdpyinfo"
|
2016-03-24 13:34:01 +01:00
|
|
|
'';
|
|
|
|
|
|
|
|
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;
|
|
|
|
}
|