libxplayer-plparser: 1.0.2 -> 1.0.3
Ported to meson and requires gmime3.
This commit is contained in:
parent
a63021a330
commit
5bb2d5f756
1 changed files with 8 additions and 6 deletions
|
@ -1,9 +1,10 @@
|
||||||
{ stdenv
|
{ stdenv
|
||||||
, lib
|
, lib
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, intltool
|
, meson
|
||||||
|
, ninja
|
||||||
, gobject-introspection
|
, gobject-introspection
|
||||||
, gmime
|
, gmime3
|
||||||
, libxml2
|
, libxml2
|
||||||
, libsoup
|
, libsoup
|
||||||
, pkg-config
|
, pkg-config
|
||||||
|
@ -11,23 +12,24 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "xplayer-plparser";
|
pname = "xplayer-plparser";
|
||||||
version = "1.0.2";
|
version = "1.0.3";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "linuxmint";
|
owner = "linuxmint";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "1i7sld8am6b1wwbpfb18v7qp17vk2a5p8xcfds50yznr30lddsb2";
|
sha256 = "6GMKsIpyQdiyHPxrjWHAHvuCouJxrAcYPIo9u6TLOA4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
intltool
|
meson
|
||||||
|
ninja
|
||||||
pkg-config
|
pkg-config
|
||||||
gobject-introspection
|
gobject-introspection
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
gmime
|
gmime3
|
||||||
libxml2
|
libxml2
|
||||||
libsoup
|
libsoup
|
||||||
];
|
];
|
||||||
|
|
Loading…
Reference in a new issue