mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
libdvdcss: 1.4.3 -> 1.5.0
Diff: https://code.videolan.org/videolan/libdvdcss/-/compare/1.4.3...1.5.0 Changelog: https://code.videolan.org/videolan/libdvdcss/blob/1.5.0/NEWS
This commit is contained in:
parent
05bf8cf22c
commit
fb17c8b453
1 changed files with 16 additions and 5 deletions
|
|
@ -1,20 +1,31 @@
|
|||
{
|
||||
lib,
|
||||
stdenv,
|
||||
fetchurl,
|
||||
fetchFromGitLab,
|
||||
meson,
|
||||
ninja,
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation (finalAttrs: {
|
||||
pname = "libdvdcss";
|
||||
version = "1.4.3";
|
||||
version = "1.5.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://get.videolan.org/libdvdcss/${finalAttrs.version}/libdvdcss-${finalAttrs.version}.tar.bz2";
|
||||
sha256 = "sha256-IzzJL13AHF06lvWzWCvn1c7lo1pS06CBWHRdPYYHAHk=";
|
||||
src = fetchFromGitLab {
|
||||
domain = "code.videolan.org";
|
||||
owner = "videolan";
|
||||
repo = "libdvdcss";
|
||||
tag = finalAttrs.version;
|
||||
hash = "sha256-xQWfAfxqsaLZN0HMozsqY5mSIO9KvZ5RAb4bj/f6WWo=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
meson
|
||||
ninja
|
||||
];
|
||||
|
||||
meta = {
|
||||
homepage = "http://www.videolan.org/developers/libdvdcss.html";
|
||||
changelog = "https://code.videolan.org/videolan/libdvdcss/blob/${finalAttrs.src.tag}/NEWS";
|
||||
description = "Library for decrypting DVDs";
|
||||
license = lib.licenses.gpl2;
|
||||
platforms = lib.platforms.unix;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue