summary refs log tree commit diff
path: root/pkgs/tools/typesetting/sile
diff options
context:
space:
mode:
authorCaleb Maclennan <caleb@alerque.com>2020-02-05 11:57:54 +0300
committerCaleb Maclennan <caleb@alerque.com>2020-02-11 16:18:20 +0300
commit928e6486aab41815aa03cf78574beea383ceb951 (patch)
treef1e3bc68862bf8e607592ab84ff6b8b2eee259b9 /pkgs/tools/typesetting/sile
parent870e509ef7ca897884cde0c705f73da68bc1f260 (diff)
downloadnixpkgs-928e6486aab41815aa03cf78574beea383ceb951.tar
nixpkgs-928e6486aab41815aa03cf78574beea383ceb951.tar.gz
nixpkgs-928e6486aab41815aa03cf78574beea383ceb951.tar.bz2
nixpkgs-928e6486aab41815aa03cf78574beea383ceb951.tar.lz
nixpkgs-928e6486aab41815aa03cf78574beea383ceb951.tar.xz
nixpkgs-928e6486aab41815aa03cf78574beea383ceb951.tar.zst
nixpkgs-928e6486aab41815aa03cf78574beea383ceb951.zip
sile: Bump to 0.10.3 and add missing lua dependency
Diffstat (limited to 'pkgs/tools/typesetting/sile')
-rw-r--r--pkgs/tools/typesetting/sile/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/tools/typesetting/sile/default.nix b/pkgs/tools/typesetting/sile/default.nix
index fddf8020d3b..de82656dc30 100644
--- a/pkgs/tools/typesetting/sile/default.nix
+++ b/pkgs/tools/typesetting/sile/default.nix
@@ -7,17 +7,17 @@
 with stdenv.lib;
 
 let
-  luaEnv = lua.withPackages(ps: with ps;[cassowary linenoise lpeg lua-zlib lua_cliargs luaepnf luaexpat luafilesystem luarepl luasec luasocket stdlib vstruct]);
+  luaEnv = lua.withPackages(ps: with ps;[cassowary cosmo linenoise lpeg lua-zlib lua_cliargs luaepnf luaexpat luafilesystem luarepl luasec luasocket stdlib vstruct]);
 
 in
 
 stdenv.mkDerivation rec {
   pname = "sile";
-  version = "0.10.1";
+  version = "0.10.3";
 
   src = fetchurl {
     url = "https://github.com/sile-typesetter/sile/releases/download/v${version}/${pname}-${version}.tar.bz2";
-    sha256 = "a5ec924bfe8a629ec4b4d09754d822cab1cf48d28bc6ce649faa5c597a108666";
+    sha256 = "d89d5ce7d2bf46fb062e5299ffd8b5d821dc3cb3462a0e7c1109edeee111d856";
   };
 
   nativeBuildInputs = [pkgconfig makeWrapper];