about summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorR. RyanTM <ryantm-bot@ryantm.com>2020-03-24 12:02:39 +0000
committerJon <jonringer@users.noreply.github.com>2020-04-09 11:30:11 -0700
commited6dbc144dd5a1a62724616528f027a0ffed2195 (patch)
tree480562380195e81c30f6f7163c095694954f39da /pkgs/development
parentfc66192b37c3e209879a99981140352566d521b7 (diff)
downloadnixlib-ed6dbc144dd5a1a62724616528f027a0ffed2195.tar
nixlib-ed6dbc144dd5a1a62724616528f027a0ffed2195.tar.gz
nixlib-ed6dbc144dd5a1a62724616528f027a0ffed2195.tar.bz2
nixlib-ed6dbc144dd5a1a62724616528f027a0ffed2195.tar.lz
nixlib-ed6dbc144dd5a1a62724616528f027a0ffed2195.tar.xz
nixlib-ed6dbc144dd5a1a62724616528f027a0ffed2195.tar.zst
nixlib-ed6dbc144dd5a1a62724616528f027a0ffed2195.zip
libaacs: 0.9.0 -> 0.10.0
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/libaacs/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libaacs/default.nix b/pkgs/development/libraries/libaacs/default.nix
index bda7d560fcde..2b3ef8c99c81 100644
--- a/pkgs/development/libraries/libaacs/default.nix
+++ b/pkgs/development/libraries/libaacs/default.nix
@@ -9,11 +9,11 @@
 
 stdenv.mkDerivation rec {
   pname = "libaacs";
-  version  = "0.9.0";
+  version  = "0.10.0";
 
   src = fetchurl {
     url = "http://get.videolan.org/libaacs/${version}/${pname}-${version}.tar.bz2";
-    sha256 = "1kms92i0c7i1yl659kqjf19lm8172pnpik5lsxp19xphr74vvq27";
+    sha256 = "1zhjdcph8sqx7ak35s22kc736icwq135jlypggkp6vqyyygb3xlk";
   };
 
   buildInputs = [ libgcrypt libgpgerror ];
@@ -21,7 +21,7 @@ stdenv.mkDerivation rec {
   nativeBuildInputs = [ yacc flex ];
 
   meta = with stdenv.lib; {
-    homepage = https://www.videolan.org/developers/libaacs.html;
+    homepage = "https://www.videolan.org/developers/libaacs.html";
     description = "Library to access AACS protected Blu-Ray disks";
     license = licenses.lgpl21;
     maintainers = with maintainers; [ abbradar ];