Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: fc66192b37c3
Choose a base ref
...
head repository: NixOS/nixpkgs
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: ed6dbc144dd5
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Apr 9, 2020

  1. libaacs: 0.9.0 -> 0.10.0

    r-ryantm authored and Jon committed Apr 9, 2020
    Copy the full SHA
    ed6dbc1 View commit details
Showing with 3 additions and 3 deletions.
  1. +3 −3 pkgs/development/libraries/libaacs/default.nix
6 changes: 3 additions & 3 deletions pkgs/development/libraries/libaacs/default.nix
Original file line number Diff line number Diff line change
@@ -9,19 +9,19 @@

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 ];

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 ];