Merge pull request #146535 from AndersonTorres/new-misc
Miscellaneous package updates: vnote: 3.8.1 -> 3.10.1 tcsh: 6.22.04 -> 6.23.00 stella: 6.5.3 -> 6.6 wxSVG: 1.5.22 -> 1.5.23 sakura: 3.8.3 -> 3.8.4
This commit is contained in:
commit
f37de8bf70
6 changed files with 47 additions and 29 deletions
|
@ -8,18 +8,24 @@
|
||||||
|
|
||||||
mkDerivation rec {
|
mkDerivation rec {
|
||||||
pname = "vnote";
|
pname = "vnote";
|
||||||
version = "3.8.1";
|
version = "3.10.1";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "vnotex";
|
owner = "vnotex";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
fetchSubmodules = true;
|
fetchSubmodules = true;
|
||||||
rev = "v${version}";
|
rev = "v${version}";
|
||||||
sha256 = "sha256-GgSVBVcT0rfgglyjCmkEMbKCEltesC3eSsN38psrkS4=";
|
sha256 = "sha256-juLyKAq21qNCWTpyMJSMw86U/DMbw/QJCr8QwyqVclA=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ qmake ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ qtbase qtwebengine ];
|
qmake
|
||||||
|
];
|
||||||
|
|
||||||
|
buildInputs = [
|
||||||
|
qtbase
|
||||||
|
qtwebengine
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://vnotex.github.io/vnote";
|
homepage = "https://vnotex.github.io/vnote";
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
{ lib
|
{ lib
|
||||||
, stdenv
|
, stdenv
|
||||||
, fetchurl
|
, fetchFromGitHub
|
||||||
, cmake
|
, cmake
|
||||||
, glib
|
, glib
|
||||||
, gtk3
|
, gtk3
|
||||||
|
@ -13,11 +13,13 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "sakura";
|
pname = "sakura";
|
||||||
version = "3.8.3";
|
version = "3.8.4";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchFromGitHub {
|
||||||
url = "https://launchpad.net/${pname}/trunk/${version}/+download/${pname}-${version}.tar.bz2";
|
owner = "dabisu";
|
||||||
sha256 = "sha256-UEDc3TjoqjLNZtWGlIZB3VTVQC+31AP0ASQH0fu+U+Q=";
|
repo = pname;
|
||||||
|
rev = "SAKURA_${lib.replaceStrings [ "." ] [ "_" ] version}";
|
||||||
|
hash = "sha256-Sqo1gyCvCMlEv1rYqw6P3Dmu10osi/KqB7/WlgTTNAc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
|
@ -36,7 +38,7 @@ stdenv.mkDerivation rec {
|
||||||
|
|
||||||
# Set path to gsettings-schemata so sakura knows where to find colorchooser,
|
# Set path to gsettings-schemata so sakura knows where to find colorchooser,
|
||||||
# fontchooser etc.
|
# fontchooser etc.
|
||||||
postInstall = ''
|
postFixup = ''
|
||||||
wrapProgram $out/bin/sakura \
|
wrapProgram $out/bin/sakura \
|
||||||
--suffix XDG_DATA_DIRS : ${gtk3}/share/gsettings-schemas/${gtk3.name}/
|
--suffix XDG_DATA_DIRS : ${gtk3}/share/gsettings-schemas/${gtk3.name}/
|
||||||
'';
|
'';
|
||||||
|
|
|
@ -11,16 +11,17 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "wxSVG";
|
pname = "wxSVG";
|
||||||
version = "1.5.22";
|
version = "1.5.23";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/wxsvg-${version}.tar.bz2";
|
url = "mirror://sourceforge/project/wxsvg/wxsvg/${version}/wxsvg-${version}.tar.bz2";
|
||||||
hash = "sha256-DeFozZ8MzTCbhkDBtuifKpBpg7wS7+dbDFzTDx6v9Sk=";
|
hash = "sha256-Pwc2H6zH0YzBmpQN1zx4FC7V7sOMFNmTqFvwwGHcq7k=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [
|
nativeBuildInputs = [
|
||||||
pkg-config
|
pkg-config
|
||||||
];
|
];
|
||||||
|
|
||||||
buildInputs = [
|
buildInputs = [
|
||||||
cairo
|
cairo
|
||||||
ffmpeg
|
ffmpeg
|
||||||
|
@ -39,5 +40,6 @@ stdenv.mkDerivation rec {
|
||||||
license = with licenses; gpl2Plus;
|
license = with licenses; gpl2Plus;
|
||||||
maintainers = with maintainers; [ AndersonTorres ];
|
maintainers = with maintainers; [ AndersonTorres ];
|
||||||
platforms = wxGTK.meta.platforms;
|
platforms = wxGTK.meta.platforms;
|
||||||
|
broken = stdenv.isDarwin;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,19 +7,22 @@
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "stella";
|
pname = "stella";
|
||||||
version = "6.5.3";
|
version = "6.6";
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
src = fetchFromGitHub {
|
||||||
owner = "stella-emu";
|
owner = "stella-emu";
|
||||||
repo = pname;
|
repo = pname;
|
||||||
rev = version;
|
rev = version;
|
||||||
hash = "sha256-Y9rEh9PZalQNj+d7OXN/8z5P8Hti4R3c2RL1BY+J1y4=";
|
hash = "sha256-+ZvSCnnoKGyToSFqUQOArolFdgUcBBFNjFw8aoVDkYI=";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ pkg-config ];
|
nativeBuildInputs = [
|
||||||
buildInputs = [ SDL2 ];
|
pkg-config
|
||||||
|
];
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
buildInputs = [
|
||||||
|
SDL2
|
||||||
|
];
|
||||||
|
|
||||||
meta = with lib;{
|
meta = with lib;{
|
||||||
homepage = "https://stella-emu.github.io/";
|
homepage = "https://stella-emu.github.io/";
|
||||||
|
|
|
@ -1,24 +1,31 @@
|
||||||
{ lib, stdenv, fetchurl, fetchpatch
|
{ lib
|
||||||
|
, stdenv
|
||||||
|
, fetchurl
|
||||||
|
, fetchpatch
|
||||||
, ncurses
|
, ncurses
|
||||||
}:
|
}:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "tcsh";
|
pname = "tcsh";
|
||||||
version = "6.22.04";
|
version = "6.23.00";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
urls = [
|
urls = [
|
||||||
"http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
|
"https://astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
|
||||||
|
"https://astron.com/pub/tcsh/${pname}-${version}.tar.gz"
|
||||||
"http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
|
"http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
|
||||||
"ftp://ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
|
"http://ftp.funet.fi/pub/mirrors/ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
|
||||||
"ftp://ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
|
|
||||||
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
|
|
||||||
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/old/${pname}-${version}.tar.gz"
|
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/old/${pname}-${version}.tar.gz"
|
||||||
|
"ftp://ftp.funet.fi/pub/unix/shells/tcsh/${pname}-${version}.tar.gz"
|
||||||
|
"ftp://ftp.astron.com/pub/tcsh/old/${pname}-${version}.tar.gz"
|
||||||
|
"ftp://ftp.astron.com/pub/tcsh/${pname}-${version}.tar.gz"
|
||||||
];
|
];
|
||||||
hash = "sha256-6xY1YkMhjDLzngcljXK/iyHmLOlLsOipXjGLFROX4jE=";
|
hash = "sha256-Tr6y8zYz0RXZU19VTGUahSMEDY2R5d4zP7LuBFuOAB4=";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ncurses ];
|
buildInputs = [
|
||||||
|
ncurses
|
||||||
|
];
|
||||||
|
|
||||||
patches = lib.optional stdenv.hostPlatform.isMusl
|
patches = lib.optional stdenv.hostPlatform.isMusl
|
||||||
(fetchpatch {
|
(fetchpatch {
|
||||||
|
@ -47,7 +54,5 @@ stdenv.mkDerivation rec {
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru.shellPath = "/bin/tcsh";
|
||||||
shellPath = "/bin/tcsh";
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -20117,7 +20117,7 @@ with pkgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
wxSVG = callPackage ../development/libraries/wxSVG {
|
wxSVG = callPackage ../development/libraries/wxSVG {
|
||||||
wxGTK = wxGTK30;
|
wxGTK = wxGTK30-gtk3;
|
||||||
};
|
};
|
||||||
|
|
||||||
wtk = callPackage ../development/libraries/wtk { };
|
wtk = callPackage ../development/libraries/wtk { };
|
||||||
|
|
Loading…
Reference in a new issue