Merge pull request #209728 from t-chab/master

stylish: fix missing dependencies
This commit is contained in:
Anderson Torres 2023-01-09 07:43:08 -03:00 committed by GitHub
commit 0f7b0e2df4
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

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";