summary refs log tree commit diff
path: root/pkgs/development/libraries/libaacs
diff options
context:
space:
mode:
authorNikolay Amiantov <ab@fmap.me>2015-07-28 11:25:33 +0300
committerNikolay Amiantov <ab@fmap.me>2015-07-28 12:33:30 +0300
commit5656c8cb8e4da938688b95e9f039a29afdc2b243 (patch)
treec878a62d8df3be26b1afba5823612f8f3e8b2bef /pkgs/development/libraries/libaacs
parenta5ef14bb74843a3a089febd38396559a5b720299 (diff)
downloadnixpkgs-5656c8cb8e4da938688b95e9f039a29afdc2b243.tar
nixpkgs-5656c8cb8e4da938688b95e9f039a29afdc2b243.tar.gz
nixpkgs-5656c8cb8e4da938688b95e9f039a29afdc2b243.tar.bz2
nixpkgs-5656c8cb8e4da938688b95e9f039a29afdc2b243.tar.lz
nixpkgs-5656c8cb8e4da938688b95e9f039a29afdc2b243.tar.xz
nixpkgs-5656c8cb8e4da938688b95e9f039a29afdc2b243.tar.zst
nixpkgs-5656c8cb8e4da938688b95e9f039a29afdc2b243.zip
libaacs: update package
Diffstat (limited to 'pkgs/development/libraries/libaacs')
-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 631c7c778ae..119a46bfc31 100644
--- a/pkgs/development/libraries/libaacs/default.nix
+++ b/pkgs/development/libraries/libaacs/default.nix
@@ -8,7 +8,7 @@
 # https://wiki.archlinux.org/index.php/BluRay
 
 let baseName = "libaacs";
-    version  = "0.8.0";
+    version  = "0.8.1";
 in
 
 stdenv.mkDerivation {
@@ -16,7 +16,7 @@ stdenv.mkDerivation {
 
   src = fetchurl {
     url = "http://download.videolan.org/pub/videolan/${baseName}/${version}/${baseName}-${version}.tar.bz2";
-    sha256 = "155sah8z4vbp6j3sq9b17mcn6rj1938ijszz97m8pd2cgif58i2y";
+    sha256 = "1s5v075hnbs57995r6lljm79wgrip3gnyf55a0y7bja75jh49hwm";
   };
 
   buildInputs = [ libgcrypt libgpgerror ];
@@ -24,7 +24,7 @@ stdenv.mkDerivation {
   nativeBuildInputs = [ yacc flex ];
 
   meta = with stdenv.lib; {
-    homepage = http://www.videolan.org/developers/libbluray.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 ];