[nixpkgs] rename poppler_utils -> poppler-utils
All checks were successful
Go / build (push) Successful in 14m0s

This commit is contained in:
2025-12-05 14:42:36 +01:00
parent f505fb17bf
commit f56b7eb688

View File

@@ -19,7 +19,7 @@
packages = with pkgs; [
go
gotools
poppler_utils #get first pdf page to png
poppler-utils #get first pdf page to png
cups
imagemagick
tailwindcss
@@ -72,7 +72,7 @@
config = lib.mkIf cfg.enable {
environment.systemPackages = [
zineshop-pkg
pkgs.poppler_utils #get first pdf page to png
pkgs.poppler-utils #get first pdf page to png
pkgs.cups
pkgs.imagemagick
];
@@ -104,7 +104,7 @@
WorkingDirectory = "/var/lib/zineshop";
ExecStart = pkgs.writeScript "start-zineshop" ''
#! ${pkgs.bash}/bin/bash
PATH="$PATH:${lib.makeBinPath [ pkgs.poppler_utils pkgs.cups pkgs.imagemagick ]}"
PATH="$PATH:${lib.makeBinPath [ pkgs.poppler-utils pkgs.cups pkgs.imagemagick ]}"
${zineshop-pkg}/bin/zineshop
'';
Restart = "on-failure";