mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
Merge pull request #84095 from timokau/calibre-unbreak-desktop
calibre: fix build of desktop items
This commit is contained in:
commit
addac63b84
|
@ -166,6 +166,7 @@ mkDerivation rec {
|
|||
disallowedReferences = [ podofo.dev ];
|
||||
|
||||
calibreDesktopItem = makeDesktopItem {
|
||||
fileValidation = false; # fails before substitution
|
||||
name = "calibre-gui";
|
||||
desktopName = "calibre";
|
||||
exec = "@out@/bin/calibre --detach %F";
|
||||
|
@ -212,6 +213,7 @@ mkDerivation rec {
|
|||
};
|
||||
|
||||
ebookEditDesktopItem = makeDesktopItem {
|
||||
fileValidation = false; # fails before substitution
|
||||
name = "calibre-edit-book";
|
||||
desktopName = "Edit E-book";
|
||||
genericName = "E-book Editor";
|
||||
|
@ -224,6 +226,7 @@ mkDerivation rec {
|
|||
};
|
||||
|
||||
ebookViewerDesktopItem = makeDesktopItem {
|
||||
fileValidation = false; # fails before substitution
|
||||
name = "calibre-ebook-viewer";
|
||||
desktopName = "E-book Viewer";
|
||||
genericName = "E-book Viewer";
|
||||
|
|
Loading…
Reference in a new issue