stylish: fix issue NixOS#209708 missing dependencies

This commit is contained in:
Thomas Chabaud 2023-01-09 09:12:43 +00:00
parent 194b1690e7
commit c750dc1a80

View file

@ -1,12 +1,21 @@
{ lib
, stdenvNoCC
, fetchFromGitHub
{
lib,
stdenvNoCC,
fetchFromGitHub,
makeWrapper,
curl,
feh,
file,
jq,
util-linux,
wget,
}:
stdenvNoCC.mkDerivation rec {
pname = "stylish";
version = "unstable-2022-12-05";
nativeBuildInputs = [ makeWrapper ];
src = fetchFromGitHub {
owner = "thevinter";
repo = "styli.sh";
@ -22,6 +31,17 @@ stdenvNoCC.mkDerivation rec {
runHook postInstall
'';
postInstall = ''
wrapProgram $out/bin/styli.sh --prefix PATH : ${lib.makeBinPath [
curl
feh
file
jq
util-linux
wget
]}
'';
meta = with lib; {
homepage = "https://github.com/thevinter/styli.sh";
description = "A shell script to manage wallpapers";