tangled
alpha
login
or
join now
pyrox.dev
/
nixpkgs
lol
0
fork
atom
overview
issues
pulls
pipelines
gstreamermm: 1.8.0 -> 1.10.0
José Romildo Malaquias
8 years ago
09fb3b5e
1334e841
+3
-10
1 changed file
expand all
collapse all
unified
split
pkgs
development
libraries
gstreamer
gstreamermm
default.nix
+3
-10
pkgs/development/libraries/gstreamer/gstreamermm/default.nix
···
1
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }:
2
3
let
4
-
ver_maj = "1.8";
5
ver_min = "0";
6
in
7
stdenv.mkDerivation rec {
···
9
10
src = fetchurl {
11
url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz";
12
-
sha256 = "0i4sk6ns4dyi4szk45bkm4kvl57l52lgm15p2wg2rhx2gr2w3qry";
13
};
14
15
-
patches = [
16
-
(fetchurl {
17
-
url = https://bug783628.bugzilla-attachments.gnome.org/attachment.cgi?id=354765;
18
-
sha256 = "082510a934bl05mz4cyakp8mfmd97cdj7vdrbvyqc4g58dcskvz0";
19
-
})
20
-
];
21
-
22
outputs = [ "out" "dev" ];
23
24
nativeBuildInputs = [ pkgconfig file ];
···
31
description = "C++ interface for GStreamer";
32
homepage = https://gstreamer.freedesktop.org/bindings/cplusplus.html;
33
license = licenses.lgpl21Plus;
34
-
maintainers = with maintainers; [ romildo ];
35
platforms = platforms.unix;
0
36
};
37
38
}
···
1
{ stdenv, fetchurl, pkgconfig, file, glibmm, gst_all_1 }:
2
3
let
4
+
ver_maj = "1.10";
5
ver_min = "0";
6
in
7
stdenv.mkDerivation rec {
···
9
10
src = fetchurl {
11
url = "mirror://gnome/sources/gstreamermm/${ver_maj}/${name}.tar.xz";
12
+
sha256 = "0q4dx9sncqbwgpzma0zvj6zssc279yl80pn8irb95qypyyggwn5y";
13
};
14
0
0
0
0
0
0
0
15
outputs = [ "out" "dev" ];
16
17
nativeBuildInputs = [ pkgconfig file ];
···
24
description = "C++ interface for GStreamer";
25
homepage = https://gstreamer.freedesktop.org/bindings/cplusplus.html;
26
license = licenses.lgpl21Plus;
0
27
platforms = platforms.unix;
28
+
maintainers = with maintainers; [ romildo ];
29
};
30
31
}