Merge staging-next into staging
This commit is contained in:
@@ -2,16 +2,16 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "goreleaser";
|
||||
version = "0.160.0";
|
||||
version = "0.161.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "goreleaser";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-XrZlDYHGexBGxEhpFVjovUYE9Cpu/QaYp11JmBnqT8o=";
|
||||
sha256 = "sha256-hCb9w8jyHJ7wGszseyweJDAVjnuxErXdwIRUGfXLRfI=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-mzT9PLthx08Hil0DBxtw6/ouZrZZSfyElWro1iyJsTY=";
|
||||
vendorSha256 = "sha256-rQF9B5syexMzHji7zXSj7YVIJnOwMR0hzTrRzKCMGYw=";
|
||||
|
||||
buildFlagsArray = [
|
||||
"-ldflags="
|
||||
|
||||
@@ -1,4 +1,4 @@
|
||||
{ lib, stdenv, fetchurl, makeWrapper, jre_headless, nixosTests }:
|
||||
{ lib, stdenv, fetchurl, makeWrapper, openjdk11_headless, nixosTests }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "graylog";
|
||||
@@ -13,7 +13,7 @@ stdenv.mkDerivation rec {
|
||||
dontStrip = true;
|
||||
|
||||
nativeBuildInputs = [ makeWrapper ];
|
||||
makeWrapperArgs = [ "--prefix" "PATH" ":" "${jre_headless}/bin" ];
|
||||
makeWrapperArgs = [ "--set-default" "JAVA_HOME" "${openjdk11_headless}" ];
|
||||
|
||||
passthru.tests = { inherit (nixosTests) graylog; };
|
||||
|
||||
|
||||
@@ -8,13 +8,13 @@ let
|
||||
|
||||
in stdenv.mkDerivation rec {
|
||||
pname = "svtplay-dl";
|
||||
version = "3.0";
|
||||
version = "3.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "spaam";
|
||||
repo = "svtplay-dl";
|
||||
rev = version;
|
||||
sha256 = "1k7829sgvs2ihnf8d3zrqk99ifm9867wcn6f8zg628h8aqsif4fc";
|
||||
sha256 = "00pz5vv39qjsw67fdlj6942371lyvv368lc82z17nnh723ck54yy";
|
||||
};
|
||||
|
||||
pythonPaths = [ pycrypto pyyaml requests ];
|
||||
|
||||
@@ -1,38 +1,57 @@
|
||||
{ lib, stdenv, autoconf, automake, pkg-config, gettext, libtool, bison
|
||||
, flex, which, subversion, fetchurl, makeWrapper, libftdi1, libusb-compat-0_1, readline
|
||||
, python3
|
||||
, svfSupport ? true
|
||||
{ lib
|
||||
, stdenv
|
||||
, fetchurl
|
||||
, autoconf
|
||||
, automake
|
||||
, autoreconfHook
|
||||
, gettext
|
||||
, libftdi1
|
||||
, libtool
|
||||
, libusb-compat-0_1
|
||||
, makeWrapper
|
||||
, pkg-config
|
||||
, readline
|
||||
, which
|
||||
, bsdlSupport ? true
|
||||
, staplSupport ? true
|
||||
, jedecSupport ? true
|
||||
, staplSupport ? true
|
||||
, svfSupport ? true
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "2019.12";
|
||||
pname = "urjtag";
|
||||
version = "2021.03";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://downloads.sourceforge.net/project/urjtag/urjtag/${version}/urjtag-${version}.tar.xz";
|
||||
sha256 = "1k2vmvvarik0q3llbfbk8ad35mcns7w1ln9gla1mn7z9c6x6x90r";
|
||||
url = "mirror://sourceforge/project/${pname}/${pname}/${version}/${pname}-${version}.tar.xz";
|
||||
hash = "sha256-sKLqokVROvCW3E13AQmDIzXGlMbBKqXpL++uhoVBbxw=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
buildInputs = [ gettext autoconf automake libtool bison flex which
|
||||
subversion makeWrapper readline libftdi1 libusb-compat-0_1 python3 ];
|
||||
|
||||
configureFlags = [
|
||||
(lib.enableFeature svfSupport "svf")
|
||||
(lib.enableFeature bsdlSupport "bsdl")
|
||||
(lib.enableFeature staplSupport "stapl")
|
||||
(lib.enableFeature jedecSupport "jedec-exp")
|
||||
nativeBuildInputs = [
|
||||
autoreconfHook
|
||||
pkg-config
|
||||
which
|
||||
gettext
|
||||
];
|
||||
buildInputs = [
|
||||
libftdi1
|
||||
libtool
|
||||
libusb-compat-0_1
|
||||
readline
|
||||
];
|
||||
|
||||
meta = {
|
||||
description = "Enhanced, modern tool for communicating over JTAG with flash chips, CPUs,and many more";
|
||||
configureFlags = [
|
||||
(lib.enableFeature bsdlSupport "bsdl")
|
||||
(lib.enableFeature jedecSupport "jedec-exp")
|
||||
(lib.enableFeature staplSupport "stapl")
|
||||
(lib.enableFeature svfSupport "svf")
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
homepage = "http://urjtag.org/";
|
||||
license = with lib.licenses; [ gpl2Plus lgpl21Plus ];
|
||||
platforms = lib.platforms.gnu ++ lib.platforms.linux; # arbitrary choice
|
||||
maintainers = with lib.maintainers; [ lowfatcomputing ];
|
||||
description = "Universal JTAG library, server and tools";
|
||||
license = with licenses; [ gpl2Plus lgpl21Plus ];
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user