Merge staging-next into staging
This commit is contained in:
commit
6ab169b9ca
@ -1,10 +1,11 @@
|
||||
{ lib, stdenv, fetchurl, runtimeShell }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "thinkingrock-binary-2.2.1";
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "thinkingrock-binary";
|
||||
version = "2.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/thinkingrock/ThinkingRock/TR%202.2.1/tr-2.2.1.tar.gz";
|
||||
url = "mirror://sourceforge/thinkingrock/ThinkingRock/TR%20${version}/tr-${version}.tar.gz";
|
||||
sha256 = "0hnwvvyc8miiz8w2g4iy7s4rgfy0kfbncgbgfzpsq6nrzq334kgm";
|
||||
};
|
||||
|
||||
|
@ -44,9 +44,9 @@
|
||||
}
|
||||
},
|
||||
"ungoogled-chromium": {
|
||||
"version": "91.0.4472.114",
|
||||
"sha256": "0wbyiwbdazgjjgj9vs56x26q3g9r80a57gfl0f2rfl1j7xwgxiy1",
|
||||
"sha256bin64": "00ac1dyqxpxy1j11jvc5j35bgc629n2f2pll3912gzih4ir0vrys",
|
||||
"version": "91.0.4472.164",
|
||||
"sha256": "1g96hk72ds2b0aymgw7yjr0akgx7mkp17i99nk511ncnmni6zrc4",
|
||||
"sha256bin64": "1j6p2gqlikaibcwa40k46dsm9jlrpbj21lv1snnjw8apjnjfd2wr",
|
||||
"deps": {
|
||||
"gn": {
|
||||
"version": "2021-04-06",
|
||||
@ -55,8 +55,8 @@
|
||||
"sha256": "199xkks67qrn0xa5fhp24waq2vk8qb78a96cb3kdd8v1hgacgb8x"
|
||||
},
|
||||
"ungoogled-patches": {
|
||||
"rev": "91.0.4472.114-1",
|
||||
"sha256": "1xb5g3hybaiwn3y1zw1fxd3g0zwmvplrs06sdqnxzsr1qm8b874h"
|
||||
"rev": "91.0.4472.164-1",
|
||||
"sha256": "1vlirqrsliyl1dvm511p5axzvhvqil1m1jlk5zngvl9zfbdjw910"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
@ -23,13 +23,13 @@ in {
|
||||
] mkPlugin);
|
||||
|
||||
femon = stdenv.mkDerivation rec {
|
||||
|
||||
name = "vdr-femon-2.4.0";
|
||||
pname = "vdr-femon";
|
||||
version = "2.4.0";
|
||||
|
||||
buildInputs = [ vdr ];
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${name}.tgz";
|
||||
url = "http://www.saunalahti.fi/~rahrenbe/vdr/femon/files/${pname}-${version}.tgz";
|
||||
sha256 = "1hra1xslj8s68zbyr8zdqp8yap0aj1p6rxyc6cwy1j122kwcnapp";
|
||||
};
|
||||
|
||||
@ -48,7 +48,6 @@ in {
|
||||
};
|
||||
|
||||
vaapidevice = stdenv.mkDerivation {
|
||||
|
||||
pname = "vdr-vaapidevice";
|
||||
version = "20190525";
|
||||
|
||||
@ -84,7 +83,8 @@ in {
|
||||
|
||||
|
||||
markad = stdenv.mkDerivation rec {
|
||||
name = "vdr-markad-2017-03-13";
|
||||
pname = "vdr-markad";
|
||||
version = "unstable-2017-03-13";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://projects.vdr-developer.org/vdr-plugin-markad.git";
|
||||
@ -176,18 +176,16 @@ in {
|
||||
|
||||
};
|
||||
|
||||
vnsiserver = let
|
||||
name = "vnsiserver";
|
||||
vnsiserver = stdenv.mkDerivation rec {
|
||||
pname = "vdr-vnsiserver";
|
||||
version = "1.8.0";
|
||||
in stdenv.mkDerivation {
|
||||
name = "vdr-${name}-${version}";
|
||||
|
||||
buildInputs = [ vdr ];
|
||||
|
||||
installFlags = [ "DESTDIR=$(out)" ];
|
||||
|
||||
src = fetchFromGitHub {
|
||||
repo = "vdr-plugin-${name}";
|
||||
repo = "vdr-plugin-vnsiserver";
|
||||
owner = "FernetMenta";
|
||||
rev = "v${version}";
|
||||
sha256 = "0n7idpxqx7ayd63scl6xwdx828ik4kb2mwz0c30cfjnmnxxd45lw";
|
||||
@ -204,7 +202,8 @@ in {
|
||||
};
|
||||
|
||||
text2skin = stdenv.mkDerivation {
|
||||
name = "vdr-text2skin-1.3.4-20170702";
|
||||
pname = "vdr-text2skin";
|
||||
version = "1.3.4-20170702";
|
||||
|
||||
src = fetchgit {
|
||||
url = "git://projects.vdr-developer.org/vdr-plugin-text2skin.git";
|
||||
@ -308,7 +307,6 @@ in {
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "vdr-fritzbox";
|
||||
|
||||
version = "1.5.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
|
@ -1,14 +1,12 @@
|
||||
{ lib, stdenv, fetchurl, jre, makeWrapper }:
|
||||
|
||||
let version = "0.4.4"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "clooj";
|
||||
inherit version;
|
||||
version = "0.4.4";
|
||||
|
||||
jar = fetchurl {
|
||||
# mirrored as original mediafire.com source does not work without user interaction
|
||||
url = "https://archive.org/download/clooj-0.4.4-standalone/clooj-0.4.4-standalone.jar";
|
||||
url = "https://archive.org/download/clooj-${version}-standalone/clooj-${version}-standalone.jar";
|
||||
sha256 = "0hbc29bg2a86rm3sx9kvj7h7db9j0kbnrb706wsfiyk3zi3bavnd";
|
||||
};
|
||||
|
||||
|
@ -1,11 +1,8 @@
|
||||
{ lib, stdenv, fetchFromGitHub, which, ocamlPackages }:
|
||||
|
||||
let version = "5.0"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "eff";
|
||||
inherit version;
|
||||
version = "5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "matijapretnar";
|
||||
|
@ -36,7 +36,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = [ maintainers.kovirobi ];
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
inherit version;
|
||||
mainProgram = "apl";
|
||||
|
||||
longDescription = ''
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ lib, fetchurl, python2Packages }:
|
||||
|
||||
let version = "0.9.5.1.1"; in
|
||||
|
||||
python2Packages.buildPythonPackage {
|
||||
python2Packages.buildPythonPackage rec {
|
||||
pname = "pyrex";
|
||||
inherit version;
|
||||
version = "0.9.5.1.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-${version}.tar.gz";
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ lib, fetchurl, python2Packages }:
|
||||
|
||||
let version = "0.9.6.4"; in
|
||||
|
||||
python2Packages.buildPythonPackage {
|
||||
python2Packages.buildPythonPackage rec {
|
||||
pname = "pyrex";
|
||||
inherit version;
|
||||
version = "0.9.6.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.cosc.canterbury.ac.nz/greg.ewing/python/Pyrex/oldtar/Pyrex-${version}.tar.gz";
|
||||
|
@ -24,7 +24,6 @@ stdenv.mkDerivation rec {
|
||||
platforms = lib.platforms.unix;
|
||||
license = lib.licenses.bsdOriginal;
|
||||
maintainers = [ lib.maintainers.raskin ];
|
||||
inherit version;
|
||||
downloadPage = "https://github.com/sshock/AFFLIBv3/tags";
|
||||
};
|
||||
}
|
||||
|
@ -27,7 +27,6 @@ stdenv.mkDerivation rec {
|
||||
NIX_CFLAGS_COMPILE = [ "-Wno-error=stringop-truncation" ];
|
||||
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "Utilities library for Linphone";
|
||||
homepage = "https://gitlab.linphone.org/BC/public/bctoolbox";
|
||||
license = licenses.gpl3Plus;
|
||||
|
@ -45,7 +45,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "Cryptographic algorithms library";
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
platforms = platforms.unix;
|
||||
|
@ -1,12 +1,8 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, sfml }:
|
||||
|
||||
let
|
||||
version = "2.5";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "csfml";
|
||||
inherit version;
|
||||
version = "2.5";
|
||||
src = fetchFromGitHub {
|
||||
owner = "SFML";
|
||||
repo = "CSFML";
|
||||
|
@ -41,7 +41,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
doCheck = true;
|
||||
meta = {
|
||||
inherit version;
|
||||
description = "Fast Library for Number Theory";
|
||||
license = lib.licenses.gpl2Plus;
|
||||
maintainers = lib.teams.sage.members;
|
||||
|
@ -13,7 +13,6 @@ stdenv.mkDerivation rec {
|
||||
nativeBuildInputs = [autoconf automake libtool gettext autoreconfHook];
|
||||
buildInputs = [gmp mpfr];
|
||||
meta = {
|
||||
inherit version;
|
||||
description = "Lattice algorithms using floating-point arithmetic";
|
||||
license = lib.licenses.lgpl21Plus;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
|
@ -1,9 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, libXi, libXrandr, libXxf86vm, libGL, libGLU, xlibsWrapper, cmake }:
|
||||
|
||||
let version = "3.2.1";
|
||||
in stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "freeglut";
|
||||
inherit version;
|
||||
version = "3.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/freeglut/freeglut-${version}.tar.gz";
|
||||
|
@ -2,12 +2,9 @@
|
||||
, blas, gfortran, openssh, mpi
|
||||
} :
|
||||
|
||||
let
|
||||
version = "5.8";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "globalarrays";
|
||||
inherit version;
|
||||
version = "5.8";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "GlobalArrays";
|
||||
|
@ -10,12 +10,9 @@ assert idnSupport -> libidn != null;
|
||||
|
||||
with lib;
|
||||
|
||||
let
|
||||
version = "1.0.24";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec{
|
||||
pname = "gloox";
|
||||
inherit version;
|
||||
version = "1.0.24";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://camaya.net/download/gloox-${version}.tar.bz2";
|
||||
|
@ -39,7 +39,6 @@ stdenv.mkDerivation rec {
|
||||
++ (lib.optionals mpiSupport [ "-DHIGHFIVE_PARALLEL_HDF5=ON" ]);
|
||||
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "Header-only C++ HDF5 interface";
|
||||
license = licenses.boost;
|
||||
homepage = "https://bluebrain.github.io/HighFive/";
|
||||
|
@ -3,13 +3,9 @@
|
||||
, qtbase
|
||||
}:
|
||||
|
||||
let
|
||||
version = "1.10.0";
|
||||
in
|
||||
|
||||
mkDerivation {
|
||||
mkDerivation rec {
|
||||
pname = "kdsoap";
|
||||
inherit version;
|
||||
version = "1.10.0";
|
||||
meta = {
|
||||
description = "A Qt-based client-side and server-side SOAP component";
|
||||
longDescription = ''
|
||||
|
@ -1,6 +1,5 @@
|
||||
{ stdenv, lib, fetchFromGitHub, fetchpatch, pkg-config, cmake, git, doxygen, help2man, ncurses, tecla
|
||||
, libusb1, udev }:
|
||||
|
||||
let
|
||||
# fetch submodule
|
||||
noos = fetchFromGitHub {
|
||||
@ -9,12 +8,9 @@ let
|
||||
rev = "0bba46e6f6f75785a65d425ece37d0a04daf6157";
|
||||
sha256 = "0is79dhsyp9xmlnfdr1i5s1c22ipjafk9d35jpn5dynpvj86m99c";
|
||||
};
|
||||
|
||||
version = "2.2.1";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "libbladeRF";
|
||||
inherit version;
|
||||
version = "2.2.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Nuand";
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, cmake, pkg-config, udev, libcec_platform, libraspberrypi ? null }:
|
||||
|
||||
let version = "6.0.2"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libcec";
|
||||
inherit version;
|
||||
version = "6.0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Pulse-Eight/libcec/archive/libcec-${version}.tar.gz";
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, cmake }:
|
||||
|
||||
let version = "2.1.0.1"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "p8-platform";
|
||||
inherit version;
|
||||
version = "2.1.0.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/Pulse-Eight/platform/archive/p8-platform-${version}.tar.gz";
|
||||
|
@ -1,9 +1,8 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake }:
|
||||
|
||||
let version = "0.7.2"; in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libdynd";
|
||||
inherit version;
|
||||
version = "0.7.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "libdynd";
|
||||
|
@ -1,9 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, unzip }:
|
||||
let
|
||||
version = "7.6.1";
|
||||
in stdenv.mkDerivation {
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libjson";
|
||||
inherit version;
|
||||
version = "7.6.1";
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/libjson/libjson_${version}.zip";
|
||||
sha256 = "0xkk5qc7kjcdwz9l04kmiz1nhmi7iszl3k165phf53h3a4wpl9h7";
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, file }:
|
||||
|
||||
let
|
||||
version = "0.8.9.0";
|
||||
in stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libmodplug";
|
||||
inherit version;
|
||||
version = "0.8.9.0";
|
||||
|
||||
preConfigure = ''
|
||||
substituteInPlace configure \
|
||||
|
@ -7,12 +7,9 @@
|
||||
# cgit) that are needed here should be included directly in Nixpkgs as
|
||||
# files.
|
||||
|
||||
let
|
||||
version = "1.2.1";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libmpc";
|
||||
inherit version; # to avoid clash with the MPD client
|
||||
version = "1.2.1"; # to avoid clash with the MPD client
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/mpc/mpc-${version}.tar.gz";
|
||||
|
@ -1,12 +1,9 @@
|
||||
{ lib, stdenv, fetchurl
|
||||
, fixedPoint ? false, withCustomModes ? true }:
|
||||
|
||||
let
|
||||
version = "1.3.1";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libopus";
|
||||
inherit version;
|
||||
version = "1.3.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://archive.mozilla.org/pub/opus/opus-${version}.tar.gz";
|
||||
|
@ -1,11 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, pkg-config, libopus }:
|
||||
|
||||
let
|
||||
version = "0.2.1";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libopusenc";
|
||||
inherit version;
|
||||
version = "0.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://archive.mozilla.org/pub/opus/libopusenc-${version}.tar.gz";
|
||||
|
@ -1,10 +1,8 @@
|
||||
{lib, stdenv, fetchurl}:
|
||||
|
||||
let version = "1.6.2"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libossp-uuid";
|
||||
inherit version;
|
||||
version = "1.6.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "ftp://ftp.ossp.org/pkg/lib/uuid/uuid-${version}.tar.gz";
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ lib, stdenv, fetchurl }:
|
||||
|
||||
let version = "1.8.5"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libspatialindex";
|
||||
inherit version;
|
||||
version = "1.8.5";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.osgeo.org/libspatialindex/spatialindex-src-${version}.tar.gz";
|
||||
|
@ -1,11 +1,8 @@
|
||||
{ lib, stdenv, fetchFromGitLab, cmake, gfortran, perl }:
|
||||
|
||||
let
|
||||
version = "5.1.5";
|
||||
|
||||
in stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "libxc";
|
||||
inherit version;
|
||||
version = "5.1.5";
|
||||
|
||||
src = fetchFromGitLab {
|
||||
owner = "libxc";
|
||||
|
@ -14,7 +14,6 @@ stdenv.mkDerivation rec {
|
||||
configureFlags = [ "--disable-werror" ];
|
||||
|
||||
meta = {
|
||||
inherit version;
|
||||
description = "A library that parses the file format of Zoner Callisto/Draw documents";
|
||||
license = lib.licenses.mpl20;
|
||||
maintainers = [lib.maintainers.raskin];
|
||||
|
@ -16,8 +16,8 @@ stdenv.mkDerivation {
|
||||
${protobuf}/bin/protoc --proto_path=. --proto_path=${nanopb}/share/nanopb/generator/proto --plugin=protoc-gen-nanopb=${nanopb}/bin/protoc-gen-nanopb --nanopb_out=$out withannotations.proto
|
||||
'';
|
||||
|
||||
docheck = true;
|
||||
checkphase = ''
|
||||
doCheck = true;
|
||||
checkPhase = ''
|
||||
grep -q WithAnnotations $out/withannotations.pb.c || (echo "error: WithAnnotations not found in $out/withannotations.pb.c"; exit 1)
|
||||
grep -q WithAnnotations $out/withannotations.pb.h || (echo "error: WithAnnotations not found in $out/withannotations.pb.h"; exit 1)
|
||||
grep -q "pb_byte_t uuid\[16\]" $out/withannotations.pb.h || (echo "error: uuid is not of type pb_byte_t and of size 16 in $out/withannotations.pb.h"; exit 1)
|
||||
|
@ -16,8 +16,8 @@ stdenv.mkDerivation {
|
||||
${protobuf}/bin/protoc --plugin=protoc-gen-nanopb=${nanopb}/bin/protoc-gen-nanopb --nanopb_out=$out withoptions.proto
|
||||
'';
|
||||
|
||||
docheck = true;
|
||||
checkphase = ''
|
||||
doCheck = true;
|
||||
checkPhase = ''
|
||||
grep -q WithOptions $out/withoptions.pb.c || (echo "error: WithOptions not found in $out/withoptions.pb.c"; exit 1)
|
||||
grep -q WithOptions $out/withoptions.pb.h || (echo "error: WithOptions not found in $out/withoptions.pb.h"; exit 1)
|
||||
grep -q "pb_byte_t uuid\[16\]" $out/withoptions.pb.h || (echo "error: uuid is not of type pb_byte_t and of size 16 in $out/withoptions.pb.h"; exit 1)
|
||||
|
@ -25,7 +25,6 @@ stdenv.mkDerivation rec {
|
||||
};
|
||||
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "Compute the perceptual hash of an image";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [maintainers.imalsogreg];
|
||||
|
@ -17,7 +17,6 @@ stdenv.mkDerivation rec {
|
||||
maintainers = with lib.maintainers; [raskin];
|
||||
license = lib.licenses.gpl2;
|
||||
downloadPage = "http://www.soft-switch.org/downloads/spandsp/";
|
||||
inherit version;
|
||||
updateWalker = true;
|
||||
};
|
||||
}
|
||||
|
@ -77,6 +77,5 @@ stdenv.mkDerivation rec {
|
||||
license = lib.licenses.gpl3Plus;
|
||||
maintainers = with lib.maintainers; [ raskin makefu mic92 ];
|
||||
platforms = with lib.platforms; linux;
|
||||
inherit version;
|
||||
};
|
||||
}
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ fetchurl, lib, stdenv, coreutils, makeWrapper }:
|
||||
|
||||
let version = "1.9.16"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ant";
|
||||
inherit version;
|
||||
version = "1.9.16";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ fetchurl, lib, stdenv, coreutils, makeWrapper }:
|
||||
|
||||
let version = "1.10.11"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "ant";
|
||||
inherit version;
|
||||
version = "1.10.11";
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
|
||||
|
@ -2,12 +2,9 @@
|
||||
|
||||
assert guileSupport -> ( pkg-config != null && guile != null );
|
||||
|
||||
let
|
||||
version = "4.2.1";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnumake";
|
||||
inherit version;
|
||||
version = "4.2.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/make/make-${version}.tar.bz2";
|
||||
|
@ -1,11 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, guileSupport ? false, pkg-config, guile }:
|
||||
|
||||
let
|
||||
version = "4.3";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "gnumake";
|
||||
inherit version;
|
||||
version = "4.3";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://gnu/make/make-${version}.tar.gz";
|
||||
|
@ -1,12 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, erlang }:
|
||||
|
||||
|
||||
let
|
||||
version = "2.6.4";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "rebar";
|
||||
inherit version;
|
||||
version = "2.6.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/rebar/rebar/archive/${version}.tar.gz";
|
||||
|
@ -1,8 +1,7 @@
|
||||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
let version = "1.3.0";
|
||||
in buildGoModule rec {
|
||||
inherit version;
|
||||
buildGoModule rec {
|
||||
version = "1.3.0";
|
||||
pname = "drone-cli";
|
||||
revision = "v${version}";
|
||||
|
||||
|
@ -4,11 +4,9 @@
|
||||
, jre
|
||||
, drivers ? []
|
||||
}:
|
||||
let
|
||||
version = "4.1.0";
|
||||
in stdenv.mkDerivation rec {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "squirrel-sql";
|
||||
inherit version;
|
||||
version = "4.1.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/project/squirrel-sql/1-stable/${version}-plainzip/squirrelsql-${version}-standard.zip";
|
||||
|
@ -1,39 +1,36 @@
|
||||
{ lib, stdenv, fetchurl, jre_headless, makeWrapper }:
|
||||
let
|
||||
version = "7.5.4";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
pname = "flyway";
|
||||
inherit version;
|
||||
src = fetchurl {
|
||||
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz";
|
||||
sha256 = "sha256-WU8j1NSf2KfA/HJWFtMLOZ3t5nxW4sU713e6qEEhZ0I=";
|
||||
};
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
dontBuild = true;
|
||||
dontStrip = true;
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/flyway
|
||||
cp -r sql jars drivers conf $out/share/flyway
|
||||
install -Dt $out/share/flyway/lib lib/community/*.jar lib/*.jar
|
||||
makeWrapper "${jre_headless}/bin/java" $out/bin/flyway \
|
||||
--add-flags "-Djava.security.egd=file:/dev/../dev/urandom" \
|
||||
--add-flags "-classpath '$out/share/flyway/lib/*:$out/share/flyway/drivers/*'" \
|
||||
--add-flags "org.flywaydb.commandline.Main" \
|
||||
--add-flags "-jarDirs='$out/share/flyway/jars'"
|
||||
'';
|
||||
meta = with lib; {
|
||||
description = "Evolve your Database Schema easily and reliably across all your instances";
|
||||
longDescription = ''
|
||||
The Flyway command-line tool is a standalone Flyway distribution.
|
||||
It is primarily meant for users who wish to migrate their database from the command-line
|
||||
without having to integrate Flyway into their applications nor having to install a build tool.
|
||||
stdenv.mkDerivation rec{
|
||||
pname = "flyway";
|
||||
version = "7.5.4";
|
||||
src = fetchurl {
|
||||
url = "https://repo1.maven.org/maven2/org/flywaydb/flyway-commandline/${version}/flyway-commandline-${version}.tar.gz";
|
||||
sha256 = "sha256-WU8j1NSf2KfA/HJWFtMLOZ3t5nxW4sU713e6qEEhZ0I=";
|
||||
};
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
dontBuild = true;
|
||||
dontStrip = true;
|
||||
installPhase = ''
|
||||
mkdir -p $out/bin $out/share/flyway
|
||||
cp -r sql jars drivers conf $out/share/flyway
|
||||
install -Dt $out/share/flyway/lib lib/community/*.jar lib/*.jar
|
||||
makeWrapper "${jre_headless}/bin/java" $out/bin/flyway \
|
||||
--add-flags "-Djava.security.egd=file:/dev/../dev/urandom" \
|
||||
--add-flags "-classpath '$out/share/flyway/lib/*:$out/share/flyway/drivers/*'" \
|
||||
--add-flags "org.flywaydb.commandline.Main" \
|
||||
--add-flags "-jarDirs='$out/share/flyway/jars'"
|
||||
'';
|
||||
meta = with lib; {
|
||||
description = "Evolve your Database Schema easily and reliably across all your instances";
|
||||
longDescription = ''
|
||||
The Flyway command-line tool is a standalone Flyway distribution.
|
||||
It is primarily meant for users who wish to migrate their database from the command-line
|
||||
without having to integrate Flyway into their applications nor having to install a build tool.
|
||||
|
||||
This package is only the Community Edition of the Flyway command-line tool.
|
||||
'';
|
||||
homepage = "https://flywaydb.org/";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.cmcdragonkai ];
|
||||
};
|
||||
}
|
||||
This package is only the Community Edition of the Flyway command-line tool.
|
||||
'';
|
||||
homepage = "https://flywaydb.org/";
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.cmcdragonkai ];
|
||||
};
|
||||
}
|
||||
|
@ -1,32 +1,31 @@
|
||||
{ fetchurl, lib, stdenv, zlib }:
|
||||
|
||||
let version = "0.98"; in
|
||||
stdenv.mkDerivation {
|
||||
pname = "fastjar";
|
||||
inherit version;
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "fastjar";
|
||||
version = "0.98";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://download.savannah.gnu.org/releases/fastjar/fastjar-${version}.tar.gz";
|
||||
sha256 = "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi";
|
||||
};
|
||||
src = fetchurl {
|
||||
url = "https://download.savannah.gnu.org/releases/fastjar/fastjar-${version}.tar.gz";
|
||||
sha256 = "0iginbz2m15hcsa3x4y7v3mhk54gr1r7m3ghx0pg4n46vv2snmpi";
|
||||
};
|
||||
|
||||
buildInputs = [ zlib ];
|
||||
buildInputs = [ zlib ];
|
||||
|
||||
doCheck = true;
|
||||
doCheck = true;
|
||||
|
||||
meta = {
|
||||
description = "Fast Java archiver written in C";
|
||||
meta = {
|
||||
description = "Fast Java archiver written in C";
|
||||
|
||||
longDescription = ''
|
||||
Fastjar is a version of Sun's `jar' utility, written entirely in C, and
|
||||
therefore quite a bit faster. Fastjar can be up to 100x faster than
|
||||
the stock `jar' program running without a JIT.
|
||||
'';
|
||||
longDescription = ''
|
||||
Fastjar is a version of Sun's `jar' utility, written entirely in C, and
|
||||
therefore quite a bit faster. Fastjar can be up to 100x faster than
|
||||
the stock `jar' program running without a JIT.
|
||||
'';
|
||||
|
||||
homepage = "https://savannah.nongnu.org/projects/fastjar/";
|
||||
homepage = "https://savannah.nongnu.org/projects/fastjar/";
|
||||
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
license = lib.licenses.gpl2Plus;
|
||||
platforms = lib.platforms.linux;
|
||||
maintainers = [ ];
|
||||
};
|
||||
}
|
||||
|
@ -66,6 +66,5 @@ stdenv.mkDerivation rec {
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
downloadPage = "http://stedolan.github.io/jq/download/";
|
||||
updateWalker = true;
|
||||
inherit version;
|
||||
};
|
||||
}
|
||||
|
@ -1,10 +1,7 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, flex, bison }:
|
||||
let
|
||||
version = "2.5.5";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "minizinc";
|
||||
inherit version;
|
||||
version = "2.5.5";
|
||||
|
||||
nativeBuildInputs = [ cmake flex bison ];
|
||||
|
||||
|
@ -1,10 +1,7 @@
|
||||
{ lib, mkDerivation, fetchFromGitHub, qtbase, qtwebengine, qtwebkit, qmake, minizinc }:
|
||||
let
|
||||
version = "2.5.3";
|
||||
in
|
||||
mkDerivation {
|
||||
mkDerivation rec {
|
||||
pname = "minizinc-ide";
|
||||
inherit version;
|
||||
version = "2.5.3";
|
||||
|
||||
nativeBuildInputs = [ qmake ];
|
||||
buildInputs = [ qtbase qtwebengine qtwebkit ];
|
||||
|
@ -1,10 +1,7 @@
|
||||
{ lib, stdenv, fetchurl, libusb-compat-0_1 }:
|
||||
let
|
||||
version = "0.7.2";
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "dfu-programmer";
|
||||
inherit version;
|
||||
version = "0.7.2";
|
||||
|
||||
buildInputs = [ libusb-compat-0_1 ];
|
||||
|
||||
|
@ -68,7 +68,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "A package manager for Lua";
|
||||
license = licenses.mit ;
|
||||
maintainers = with maintainers; [raskin teto];
|
||||
|
@ -1,9 +1,8 @@
|
||||
{ lib, pythonPackages, fetchFromGitHub }:
|
||||
|
||||
let version = "0.1.2"; in
|
||||
pythonPackages.buildPythonApplication {
|
||||
pythonPackages.buildPythonApplication rec {
|
||||
pname = "nixbang";
|
||||
inherit version;
|
||||
version = "0.1.2";
|
||||
namePrefix = "";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
|
@ -1,11 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, libelf }:
|
||||
|
||||
let
|
||||
version = "20130503";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "prelink";
|
||||
inherit version;
|
||||
version = "20130503";
|
||||
|
||||
buildInputs = [
|
||||
libelf stdenv.cc.libc (lib.getOutput "static" stdenv.cc.libc)
|
||||
|
@ -1,10 +1,8 @@
|
||||
{ lib, stdenv, fetchzip, ocaml }:
|
||||
|
||||
let version = "0.1.10"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "obuild";
|
||||
inherit version;
|
||||
version = "0.1.10";
|
||||
|
||||
src = fetchzip {
|
||||
url = "https://github.com/ocaml-obuild/obuild/archive/obuild-v${version}.tar.gz";
|
||||
|
@ -1,10 +1,7 @@
|
||||
{ lib, stdenv, fetchFromGitHub, ocaml, findlib }:
|
||||
let
|
||||
version = "0.14.0";
|
||||
in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
name = "ocamlbuild-${version}";
|
||||
inherit version;
|
||||
version = "0.14.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "ocaml";
|
||||
|
@ -46,7 +46,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
description = "A parser generator like bison, but it generates C++ code";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
|
@ -1,12 +1,9 @@
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, python3, spirv-headers }:
|
||||
let
|
||||
# Update spirv-headers rev in lockstep according to DEPs file
|
||||
version = "2020.2";
|
||||
in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "spirv-tools";
|
||||
inherit version;
|
||||
# Update spirv-headers rev in lockstep according to DEPs file
|
||||
version = "2020.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "KhronosGroup";
|
||||
|
@ -1,7 +1,8 @@
|
||||
{ stdenv, apulse, libpulseaudio, pkg-config, intltool, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
name = "libpressureaudio-${apulse.version}";
|
||||
pname = "libpressureaudio";
|
||||
version = apulse.version;
|
||||
|
||||
src = libpulseaudio.src;
|
||||
|
||||
|
@ -1,7 +1,7 @@
|
||||
{ lib, fetchFromGitHub, buildLinux, linux_zen, ... } @ args:
|
||||
|
||||
let
|
||||
version = "5.12.14";
|
||||
version = "5.12.17";
|
||||
suffix = "lqx2";
|
||||
in
|
||||
|
||||
@ -14,7 +14,7 @@ buildLinux (args // {
|
||||
owner = "zen-kernel";
|
||||
repo = "zen-kernel";
|
||||
rev = "v${version}-${suffix}";
|
||||
sha256 = "sha256-pj5sSW4ggZEx2n7bVU2sfK3JOXG5n4Rsp3S66/+/wVU=";
|
||||
sha256 = "sha256-i0Ha9H1VVRKlmomWz1+UmKBH9CSlmHAZm0kwz0Kamqg=";
|
||||
};
|
||||
|
||||
extraMeta = {
|
||||
|
@ -25,7 +25,6 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
inherit version;
|
||||
inherit (src.homepage);
|
||||
description = "A FUSE-based filesystem that uses the p7zip library";
|
||||
longDescription = ''
|
||||
|
@ -1,9 +1,8 @@
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, file, fuse, libmtp }:
|
||||
|
||||
let version = "0.5"; in
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "jmtpfs";
|
||||
inherit version;
|
||||
version = "0.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
sha256 = "1pm68agkhrwgrplrfrnbwdcvx5lrivdmqw8pb5gdmm3xppnryji1";
|
||||
|
@ -1,9 +1,8 @@
|
||||
{lib, stdenv, fetchurl, libaal}:
|
||||
|
||||
let version = "2.0.4"; in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "reiser4progs";
|
||||
inherit version;
|
||||
version = "2.0.4";
|
||||
|
||||
src = fetchurl {
|
||||
url = "mirror://sourceforge/reiser4/reiser4-utils/${pname}-${version}.tar.gz";
|
||||
|
@ -1,9 +1,8 @@
|
||||
{ lib, stdenv, fetchurl, libuuid, autoreconfHook }:
|
||||
|
||||
let version = "3.6.24"; in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "reiserfsprogs";
|
||||
inherit version;
|
||||
version = "3.6.24";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.kernel.org/pub/linux/kernel/people/jeffm/reiserfsprogs/v${version}/${pname}-${version}.tar.xz";
|
||||
|
@ -1,9 +1,8 @@
|
||||
{ lib, stdenv, fetchFromGitHub, ruby, zfs }:
|
||||
|
||||
let version = "0.3.6"; in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "zfstools";
|
||||
inherit version;
|
||||
version = "0.3.6";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
sha256 = "16lvw3xbmxp2pr8nixqn7lf4504zaaxvbbdnjkv4dggwd4lsdjyg";
|
||||
|
@ -2,7 +2,7 @@
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "zsh-autoenv";
|
||||
version = "2017-12-16";
|
||||
version = "unstable-2017-12-16";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "Tarrasch";
|
||||
|
Loading…
Reference in New Issue
Block a user