tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
libebur128: 1.2.5 -> 1.2.6
R. RyanTM
5 years ago
e45b53d2
82abb663
+2
-2
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
libebur128
default.nix
+2
-2
pkgs/development/libraries/libebur128/default.nix
···
1
1
{ lib, stdenv, fetchFromGitHub, cmake, speexdsp, pkg-config }:
2
2
3
3
stdenv.mkDerivation rec {
4
4
-
version = "1.2.5";
4
4
+
version = "1.2.6";
5
5
pname = "libebur128";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "jiixyj";
9
9
repo = "libebur128";
10
10
rev = "v${version}";
11
11
-
sha256 = "sha256-B6MOSbLfPvadXtXHSvxZCIpAH1Bnj6sItYRp+xH5HDA=";
11
11
+
sha256 = "sha256-UKO2k+kKH/dwt2xfaYMrH/GXjEkIrnxh1kGG/3P5d3Y=";
12
12
};
13
13
14
14
nativeBuildInputs = [ cmake pkg-config ];