Merge pull request #154892 from fgaz/sfxr-qt/1.4.0
sfxr-qt: 1.3.0 -> 1.4.0
This commit is contained in:
commit
c6fcdfe3e9
1 changed files with 7 additions and 3 deletions
|
@ -2,6 +2,7 @@
|
||||||
, mkDerivation
|
, mkDerivation
|
||||||
, fetchFromGitHub
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
|
, extra-cmake-modules
|
||||||
, qtbase
|
, qtbase
|
||||||
, qtquickcontrols2
|
, qtquickcontrols2
|
||||||
, SDL
|
, SDL
|
||||||
|
@ -10,18 +11,22 @@
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "sfxr-qt";
|
pname = "sfxr-qt";
|
||||||
version = "1.3.0";
|
version = "1.4.0";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "agateau";
|
owner = "agateau";
|
||||||
repo = "sfxr-qt";
|
repo = "sfxr-qt";
|
||||||
rev = version;
|
rev = version;
|
||||||
sha256 = "15yjgjl1c5k816mnpc09104zq0ack2a3mjsxmhcik7cmjkfiipr5";
|
sha256 = "sha256-Mn+wcwu70BwsTLFlc12sOOe6U1AJ8hR7bCIPlPnCooE=";
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
cmake
|
cmake
|
||||||
|
extra-cmake-modules
|
||||||
(python3.withPackages (pp: with pp; [ pyyaml jinja2 setuptools ]))
|
(python3.withPackages (pp: with pp; [ pyyaml jinja2 setuptools ]))
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
qtbase
|
qtbase
|
||||||
qtquickcontrols2
|
qtquickcontrols2
|
||||||
|
@ -36,4 +41,3 @@ mkDerivation rec {
|
||||||
platforms = platforms.linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue