mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-02-20 02:55:39 +00:00
Merge remote-tracking branch 'origin/master' into staging-next
This commit is contained in:
commit
a7fc5aaa76
@ -499,6 +499,7 @@ in
|
||||
oldLfsJwtSecret = "${cfg.stateDir}/custom/conf/jwt_secret"; # old file for LFS_JWT_SECRET
|
||||
lfsJwtSecret = "${cfg.stateDir}/custom/conf/lfs_jwt_secret"; # new file for LFS_JWT_SECRET
|
||||
internalToken = "${cfg.stateDir}/custom/conf/internal_token";
|
||||
replaceSecretBin = "${pkgs.replace-secret}/bin/replace-secret";
|
||||
in ''
|
||||
# copy custom configuration and generate a random secret key if needed
|
||||
${optionalString (cfg.useWizard == false) ''
|
||||
@ -526,23 +527,17 @@ in
|
||||
${gitea}/bin/gitea generate secret INTERNAL_TOKEN > ${internalToken}
|
||||
fi
|
||||
|
||||
SECRETKEY="$(head -n1 ${secretKey})"
|
||||
DBPASS="$(head -n1 ${cfg.database.passwordFile})"
|
||||
OAUTH2JWTSECRET="$(head -n1 ${oauth2JwtSecret})"
|
||||
LFSJWTSECRET="$(head -n1 ${lfsJwtSecret})"
|
||||
INTERNALTOKEN="$(head -n1 ${internalToken})"
|
||||
${if (cfg.mailerPasswordFile == null) then ''
|
||||
MAILERPASSWORD="#mailerpass#"
|
||||
'' else ''
|
||||
MAILERPASSWORD="$(head -n1 ${cfg.mailerPasswordFile} || :)"
|
||||
chmod u+w '${runConfig}'
|
||||
${replaceSecretBin} '#secretkey#' '${secretKey}' '${runConfig}'
|
||||
${replaceSecretBin} '#dbpass#' '${cfg.database.passwordFile}' '${runConfig}'
|
||||
${replaceSecretBin} '#oauth2jwtsecret#' '${oauth2JwtSecret}' '${runConfig}'
|
||||
${replaceSecretBin} '#lfsjwtsecret#' '${lfsJwtSecret}' '${runConfig}'
|
||||
${replaceSecretBin} '#internaltoken#' '${internalToken}' '${runConfig}'
|
||||
|
||||
${lib.optionalString (cfg.mailerPasswordFile != null) ''
|
||||
${replaceSecretBin} '#mailerpass#' '${cfg.mailerPasswordFile}' '${runConfig}'
|
||||
''}
|
||||
sed -e "s,#secretkey#,$SECRETKEY,g" \
|
||||
-e "s,#dbpass#,$DBPASS,g" \
|
||||
-e "s,#oauth2jwtsecret#,$OAUTH2JWTSECRET,g" \
|
||||
-e "s,#lfsjwtsecret#,$LFSJWTSECRET,g" \
|
||||
-e "s,#internaltoken#,$INTERNALTOKEN,g" \
|
||||
-e "s,#mailerpass#,$MAILERPASSWORD,g" \
|
||||
-i ${runConfig}
|
||||
chmod u-w '${runConfig}'
|
||||
}
|
||||
(umask 027; gitea_setup)
|
||||
''}
|
||||
|
@ -142,6 +142,7 @@ stdenv.mkDerivation rec {
|
||||
gpl3Plus
|
||||
] ++ lib.optional enableVST2 unfree;
|
||||
maintainers = with maintainers; [ astro tobiasBora OPNA2608 ];
|
||||
mainProgram = "BespokeSynth";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -31,5 +31,6 @@ rustPlatform.buildRustPackage rec {
|
||||
changelog = "https://github.com/Rigellute/spotify-tui/blob/v${version}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jwijenbergh ];
|
||||
mainProgram = "spt";
|
||||
};
|
||||
}
|
||||
|
@ -19,5 +19,6 @@ rustPlatform.buildRustPackage rec {
|
||||
homepage = "https://github.com/caverym/proton-caller";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kho-dialga ];
|
||||
mainProgram = "proton-call";
|
||||
};
|
||||
}
|
||||
|
@ -10,14 +10,14 @@
|
||||
|
||||
python3Packages.buildPythonPackage rec {
|
||||
pname = "hydrus";
|
||||
version = "479";
|
||||
version = "480";
|
||||
format = "other";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "hydrusnetwork";
|
||||
repo = "hydrus";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-hP+tOrtYfxAKmNCJSYWQzmd0hjxktNEjJqb42lPG9IM=";
|
||||
sha256 = "sha256-TZQY9wFXJFJtMAw2N+mlfVymewL96rn0Lza9jnDOGNA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -22,6 +22,7 @@ buildGoPackage {
|
||||
description = "Automatically convert your existing AutoScaling groups to up to 90% cheaper spot instances with minimal configuration changes";
|
||||
license = licenses.free;
|
||||
maintainers = [ maintainers.costrouc ];
|
||||
mainProgram = "AutoSpotting";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
||||
|
@ -27,6 +27,7 @@ stdenv.mkDerivation {
|
||||
homepage = "http://codefromabove.com/2014/05/catclock/";
|
||||
license = with licenses; mit;
|
||||
maintainers = with maintainers; [ ramkromberg ];
|
||||
mainProgram = "xclock";
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
}
|
||||
|
@ -16,5 +16,6 @@ rustPlatform.buildRustPackage rec {
|
||||
homepage = "https://github.com/adamsky/globe";
|
||||
license = licenses.gpl3Only;
|
||||
maintainers = with maintainers; [ devhell ];
|
||||
mainProgram = "globe";
|
||||
};
|
||||
}
|
||||
|
@ -19,6 +19,7 @@ rustPlatform.buildRustPackage rec {
|
||||
description = "Replacement for rm with focus on safety, ergonomics and performance";
|
||||
homepage = "https://github.com/nivekuil/rip";
|
||||
maintainers = with maintainers; [ nils-degroot ];
|
||||
mainProgram = "rip";
|
||||
license = licenses.gpl3Plus;
|
||||
};
|
||||
}
|
||||
|
@ -29,6 +29,7 @@ rustPlatform.buildRustPackage rec {
|
||||
homepage = "https://gitlab.com/ttyperacer/terminal-typeracer";
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ yoctocell ];
|
||||
mainProgram = "typeracer";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://timewarrior.net";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ matthiasbeyer mrVanDalo ];
|
||||
mainProgram = "timew";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
||||
|
@ -35,5 +35,6 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/mpereira/tty-solitaire";
|
||||
platforms = ncurses.meta.platforms;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
mainProgram = "ttysolitaire";
|
||||
};
|
||||
}
|
||||
|
@ -19,9 +19,9 @@
|
||||
}
|
||||
},
|
||||
"beta": {
|
||||
"version": "101.0.4951.26",
|
||||
"sha256": "1wpdi5l0bic0z9ydvx5vj35z6fh21b3n8dsxyvcbm0rq4fca5zcg",
|
||||
"sha256bin64": "13mx2jxq5pjzp6dxvnzkfs83krhvpbw0pim7z4c7hhyphjc4fhzr",
|
||||
"version": "101.0.4951.34",
|
||||
"sha256": "1pqglzc8k31a4x06jn9pd6y8m4nmmb7rv5b3zancmh0d3z0nz3v5",
|
||||
"sha256bin64": "1zhif47j8nqglaj1z3ism3dl6z8n5ilyyr835an32mf6igkfj217",
|
||||
"deps": {
|
||||
"gn": {
|
||||
"version": "2022-03-14",
|
||||
|
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://links.twibright.com/";
|
||||
description = "A small browser with some graphics support";
|
||||
maintainers = with maintainers; [ raskin ];
|
||||
mainProgram = "links";
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
|
@ -4,11 +4,11 @@
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "widevine";
|
||||
version = "4.10.2391.0";
|
||||
version = "4.10.2449.0";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://dl.google.com/widevine-cdm/${version}-linux-x64.zip";
|
||||
sha256 = "sha256-7gH808C67m/s09e4rQUQHb/t+iGVdzW+YzrB1ZxGIdo=";
|
||||
sha256 = "sha256-XZuXK3NCfqbaQ1tuMOXj/U4yJC18futqo1WjuMqMrRA=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ unzip ];
|
||||
|
@ -39,6 +39,7 @@ buildGoModule rec {
|
||||
description = "The official command line client for Cloud Foundry";
|
||||
homepage = "https://github.com/cloudfoundry/cli";
|
||||
maintainers = with maintainers; [ ris ];
|
||||
mainProgram = "cf";
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
@ -50,6 +50,7 @@ buildGoModule rec {
|
||||
'';
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ kuznero jlesquembre ngerstle jk ricochet ];
|
||||
mainProgram = "k3d";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
||||
|
@ -26,5 +26,6 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/kudobuilder/kuttl";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ diegolelis ];
|
||||
mainProgram = "kubectl-kuttl";
|
||||
};
|
||||
}
|
||||
|
@ -20,5 +20,6 @@ buildGoPackage rec {
|
||||
homepage = "https://github.com/pachyderm/pachyderm";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [offline];
|
||||
mainProgram = "pachctl";
|
||||
};
|
||||
}
|
||||
|
@ -21,5 +21,6 @@ buildGoModule rec {
|
||||
changelog = "https://github.com/CrunchyData/postgres-operator/releases/tag/v${version}";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.bryanasdev000 ];
|
||||
mainProgram = "pgo";
|
||||
};
|
||||
}
|
||||
|
@ -31,6 +31,7 @@ buildGoModule rec {
|
||||
homepage = "https://tanka.dev";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ mikefaille ];
|
||||
mainProgram = "tk";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -61,5 +61,6 @@ buildGoModule rec {
|
||||
'';
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ jk mstrangfeld vdemeester ];
|
||||
mainProgram = "tkn";
|
||||
};
|
||||
}
|
||||
|
@ -1,18 +1,17 @@
|
||||
{ lib, stdenv, fetchFromGitHub, gettext, makeWrapper, tcl, which
|
||||
, ncurses, perl , cyrus_sasl, gss, gpgme, libkrb5, libidn, libxml2, notmuch, openssl
|
||||
, lmdb, libxslt, docbook_xsl, docbook_xml_dtd_42, w3m, mailcap, sqlite, zlib
|
||||
, fetchpatch
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
version = "20211029";
|
||||
version = "20220408";
|
||||
pname = "neomutt";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "neomutt";
|
||||
repo = "neomutt";
|
||||
rev = version;
|
||||
sha256 = "sha256-haPDZorAfKuIEMiBCXJRMALAYnurQyjmCSOnj9IsoKk=";
|
||||
sha256 = "1aziffkjxbflw1narih0dr8ghl142knsb5z14fjb7n5ya9xpgp05";
|
||||
};
|
||||
|
||||
buildInputs = [
|
||||
@ -25,15 +24,6 @@ stdenv.mkDerivation rec {
|
||||
docbook_xsl docbook_xml_dtd_42 gettext libxml2 libxslt.bin makeWrapper tcl which zlib w3m
|
||||
];
|
||||
|
||||
patches = [
|
||||
# Remove on next update, see
|
||||
# https://github.com/NixOS/nixpkgs/pull/143641#issuecomment-954991746 for context.
|
||||
(fetchpatch {
|
||||
url = "https://github.com/neomutt/neomutt/commit/4242a31313e0b600693215c01047bbda8a6dd25a.patch";
|
||||
sha256 = "sha256-fcuNeBkPjqln5QA9VFcfXCQD/VrUoSEMSxQ//Xj+yxY=";
|
||||
})
|
||||
];
|
||||
|
||||
enableParallelBuilding = true;
|
||||
|
||||
postPatch = ''
|
||||
|
@ -38,6 +38,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://pjsip.org/";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ olynch ];
|
||||
mainProgram = "pjsua";
|
||||
platforms = platforms.linux ++ platforms.darwin;
|
||||
};
|
||||
}
|
||||
|
@ -27,6 +27,7 @@ buildGoModule rec {
|
||||
description = "Simple and highly scalable distributed file system";
|
||||
homepage = "https://github.com/chrislusf/seaweedfs";
|
||||
maintainers = with maintainers; [ cmacrae raboof ];
|
||||
mainProgram = "weed";
|
||||
license = licenses.asl20;
|
||||
};
|
||||
}
|
||||
|
@ -25,11 +25,11 @@ let
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "PortfolioPerformance";
|
||||
version = "0.56.5";
|
||||
version = "0.57.1";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://github.com/buchen/portfolio/releases/download/${version}/PortfolioPerformance-${version}-linux.gtk.x86_64.tar.gz";
|
||||
sha256 = "sha256-g/MjOrivqbZ93iSs5mLQT36gn72KCJEOgEssBZER+TA=";
|
||||
sha256 = "sha256-uEEFkHyApf+TObcu+Yo5vBOs2Erq0IXGhbjzlEe8NmI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@ -62,7 +62,7 @@ stdenv.mkDerivation rec {
|
||||
description = "A simple tool to calculate the overall performance of an investment portfolio";
|
||||
homepage = "https://www.portfolio-performance.info/";
|
||||
license = licenses.epl10;
|
||||
maintainers = with maintainers; [ elohmeier oyren ];
|
||||
maintainers = with maintainers; [ elohmeier oyren shawn8901 ];
|
||||
platforms = [ "x86_64-linux" ];
|
||||
};
|
||||
}
|
||||
|
@ -1,34 +1,17 @@
|
||||
{ lib, stdenv, fetchFromGitHub, fetchpatch, cmake, fftw, hamlib, libpulseaudio, libGL, libX11, liquid-dsp,
|
||||
{ lib, stdenv, fetchFromGitHub, cmake, fftw, hamlib, libpulseaudio, libGL, libX11, liquid-dsp,
|
||||
pkg-config, soapysdr-with-plugins, wxGTK31-gtk3, enableDigitalLab ? false }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "cubicsdr";
|
||||
version = "0.2.5";
|
||||
version = "0.2.7";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "cjcliffe";
|
||||
repo = "CubicSDR";
|
||||
rev = version;
|
||||
sha256 = "1ihbn18bzdcdvwpa4hnb55ns38bj4b8xy53hkmra809f9qpbcjhn";
|
||||
sha256 = "0cyv1vk97x4i3h3hhh7dx8mv6d1ad0fypdbx5fl26bz661sr8j2n";
|
||||
};
|
||||
|
||||
# Allow cubicsdr 0.2.5 to build with wxGTK 3.1.3
|
||||
# these come from cubicsdr's master branch, subsequent releases may include them
|
||||
patches = [
|
||||
(fetchpatch {
|
||||
url = "https://github.com/cjcliffe/CubicSDR/commit/65a160fa356ce9665dfe05c6bfc6754535e16743.patch";
|
||||
sha256 = "0vbr5x9fnm09bws5crqcm6kkhr1bg5r0bc1pxnwwjyc6jpvqi6ad";
|
||||
})
|
||||
(fetchpatch {
|
||||
url = "https://github.com/cjcliffe/CubicSDR/commit/f449a65457e35bf8260d0b16b8a47b6bc0ea2c7e.patch";
|
||||
sha256 = "1zjvjmhm8ybi6i9pq7by3fj3mvx37dy7gj4gk23d79yrnl9mk25p";
|
||||
})
|
||||
(fetchpatch {
|
||||
url = "https://github.com/cjcliffe/CubicSDR/commit/0540d08c2dea79b668b32b1a6d58f235d65ce9d2.patch";
|
||||
sha256 = "07l7b82f779sbcj0jza0mg463ac1153bs9hn6ai388j7dm3lvasn";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [ cmake pkg-config ];
|
||||
|
||||
buildInputs = [ fftw hamlib libpulseaudio libGL libX11 liquid-dsp soapysdr-with-plugins wxGTK31-gtk3 ];
|
||||
@ -44,4 +27,3 @@ stdenv.mkDerivation rec {
|
||||
platforms = platforms.linux;
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -18,5 +18,6 @@ buildGoModule rec {
|
||||
description = "FlexRadio remote control (CAT) via hamlib/rigctl protocol";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ mvs ];
|
||||
mainProgram = "nCAT";
|
||||
};
|
||||
}
|
||||
|
@ -19,6 +19,7 @@ stdenv.mkDerivation {
|
||||
homepage = "https://github.com/dgiardini/rtl-ais";
|
||||
license = licenses.gpl2Plus;
|
||||
maintainers = with maintainers; [ mgdm ];
|
||||
mainProgram = "rtl_ais";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
|
||||
description = "A Java-based tool for generating EPS files for constructing astrolabes and related tools";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ ];
|
||||
mainProgram = "AstrolabeGenerator";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -34,6 +34,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://cmpg.unibe.ch/software/BayeScan";
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.bzizou ];
|
||||
mainProgram = "bayescan_${version}";
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -27,6 +27,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://www.clustal.org/omega/";
|
||||
license = licenses.gpl2;
|
||||
maintainers = [ maintainers.bzizou ];
|
||||
mainProgram = "clustalo";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.mit;
|
||||
homepage = "https://broadinstitute.github.io/picard/";
|
||||
maintainers = with maintainers; [ jbedo ];
|
||||
mainProgram = "picard";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -56,6 +56,7 @@ stdenv.mkDerivation {
|
||||
homepage = "https://symbiyosys.readthedocs.io/";
|
||||
license = lib.licenses.isc;
|
||||
maintainers = with lib.maintainers; [ thoughtpolice emily ];
|
||||
mainProgram = "sby";
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -50,5 +50,6 @@ rustPlatform.buildRustPackage rec {
|
||||
homepage = "https://github.com/finalfusion/finalfusion-utils/";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ ];
|
||||
mainProgram = "finalfusion";
|
||||
};
|
||||
}
|
||||
|
@ -18,5 +18,6 @@ rustPlatform.buildRustPackage rec {
|
||||
homepage = "https://github.com/Eliot00/commit-formatter";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
maintainers = with maintainers; [ elliot ];
|
||||
mainProgram = "git-cf";
|
||||
};
|
||||
}
|
||||
|
@ -39,6 +39,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.changlinli ];
|
||||
mainProgram = "bfg";
|
||||
platforms = platforms.unix;
|
||||
downloadPage = "https://mvnrepository.com/artifact/com.madgag/bfg/${version}";
|
||||
};
|
||||
|
@ -16,6 +16,7 @@ bundlerEnv rec {
|
||||
homepage = "https://bitbucket.org/atlassian/bitbucket-server-cli";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ jgertm nicknovitski ];
|
||||
mainProgram = "stash";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -21,6 +21,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://git-annex.mysteryvortex.com/git-annex-utils.html";
|
||||
license = lib.licenses.gpl3;
|
||||
maintainers = with lib.maintainers; [ woffs ];
|
||||
mainProgram = "gadu";
|
||||
platforms = lib.platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -39,5 +39,6 @@ rustPlatform.buildRustPackage rec {
|
||||
changelog = "https://github.com/MitMaro/git-interactive-rebase-tool/releases/tag/${version}";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ masaeedu SuperSandro2000 zowoq ];
|
||||
mainProgram = "interactive-rebase-tool";
|
||||
};
|
||||
}
|
||||
|
@ -56,5 +56,6 @@ rustPlatform.buildRustPackage rec {
|
||||
changelog = "https://github.com/martinvonz/jj/blob/v${version}/CHANGELOG.md";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ _0x4A6F ];
|
||||
mainProgram = "jj";
|
||||
};
|
||||
}
|
||||
|
@ -13,14 +13,14 @@
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "pijul";
|
||||
version = "1.0.0-beta";
|
||||
version = "1.0.0-beta.1";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit version pname;
|
||||
sha256 = "sha256-s7fHg6Le4y0yAyxOQf6iUUHA4dYsamlTUb0KISOHI7Q=";
|
||||
sha256 = "sha256-XdbZFWtHKXjcGV1vYn7MYdevW+Vc/IKON1DOU49Kzlo=";
|
||||
};
|
||||
|
||||
cargoSha256 = "sha256-09PWy1yfr1FY2AsKaoZZswi4P5JdNcumIOmTm+M21UE=";
|
||||
cargoSha256 = "sha256-9kPeJ0tOhA4oqFOdwGDkXMnNViklMlNO7VbbWXYrk3I=";
|
||||
|
||||
doCheck = false;
|
||||
nativeBuildInputs = [ pkg-config ];
|
||||
|
@ -20,6 +20,7 @@ buildGoPackage rec {
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ copumpkin ];
|
||||
mainProgram = "agent";
|
||||
};
|
||||
}
|
||||
|
||||
|
@ -30,7 +30,8 @@ in stdenv.mkDerivation rec {
|
||||
unzip -d $out/share/fonts/truetype $src
|
||||
'';
|
||||
|
||||
meta = iosevka.meta // {
|
||||
meta = {
|
||||
inherit (iosevka.meta) homepage downloadPage description license platforms;
|
||||
maintainers = with lib.maintainers; [
|
||||
cstrahan
|
||||
];
|
||||
|
@ -51,5 +51,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.gpl2Plus;
|
||||
platforms = platforms.unix;
|
||||
maintainers = teams.freedesktop.members ++ [ maintainers.mimame ];
|
||||
mainProgram = "update-mime-database";
|
||||
};
|
||||
}
|
||||
|
@ -42,5 +42,6 @@ in rebar3Relx rec {
|
||||
platforms = platforms.unix;
|
||||
license = licenses.asl20;
|
||||
maintainers = with lib.maintainers; [ dlesl ];
|
||||
mainProgram = "elvis";
|
||||
};
|
||||
}
|
||||
|
@ -50,6 +50,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
license = licenses.gpl3Plus;
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
mainProgram = "a68g";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -38,6 +38,7 @@ stdenv.mkDerivation rec {
|
||||
downloadPage = "https://duktape.org/download.html";
|
||||
license = licenses.mit;
|
||||
maintainers = [ maintainers.fgaz ];
|
||||
mainProgram = "duk";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -28,6 +28,7 @@ stdenv.mkDerivation rec {
|
||||
'';
|
||||
license = licenses.gpl3;
|
||||
maintainers = [ maintainers.AndersonTorres ];
|
||||
mainProgram = "lolcode-lci";
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
let
|
||||
base = callPackage ./generic.nix (_args // {
|
||||
version = "7.4.28";
|
||||
sha256 = "sha256-IIUIaoY0RLDjlUfeGklp/RxAoMGI61j6spOLZJsMS1g=";
|
||||
version = "7.4.29";
|
||||
sha256 = "sha256-fd5YoCsiXCUTDG4q4su6clS7A0D3/hcpFHgXbYZvlII=";
|
||||
});
|
||||
|
||||
in
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
let
|
||||
base = callPackage ./generic.nix (_args // {
|
||||
version = "8.0.17";
|
||||
sha256 = "52811ee2dde71660ca32737a4ac696c24591eb22e846dd8e09ee77122660283f";
|
||||
version = "8.0.18";
|
||||
sha256 = "sha256-gm7jSIGhw0lnjU98xV/5FB+hQRNE5LuPldD5IjvOtVo=";
|
||||
});
|
||||
|
||||
in
|
||||
|
@ -2,8 +2,8 @@
|
||||
|
||||
let
|
||||
base = callPackage ./generic.nix (_args // {
|
||||
version = "8.1.4";
|
||||
sha256 = "b3f688cb69758523838b8e7f509aaef0152133d9b84a84a0b7cf68eeafc1df76";
|
||||
version = "8.1.5";
|
||||
sha256 = "sha256-gn3lZ3HDq4MToGmBLxX27EmYnVEK69Dc4YCDnG2Nb/M=";
|
||||
});
|
||||
|
||||
in
|
||||
|
@ -43,6 +43,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/infradig/trealla";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ siraben ];
|
||||
mainProgram = "tpl";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -18,6 +18,7 @@ rustPlatform.buildRustPackage rec {
|
||||
description = "A cool functional scripting language written in rust";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
mainProgram = "yex";
|
||||
platforms = platforms.unix;
|
||||
broken = stdenv.isAarch64 && stdenv.isLinux;
|
||||
};
|
||||
|
@ -1,14 +1,14 @@
|
||||
{lib, stdenv, fetchFromGitHub, autoreconfHook }:
|
||||
|
||||
stdenv.mkDerivation {
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "liquid-dsp";
|
||||
version = "20170307";
|
||||
version = "1.4.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "jgaeddert";
|
||||
repo = "liquid-dsp";
|
||||
rev = "8c1978fa4f5662b8849fe712be716958f29cec0e";
|
||||
sha256 = "0zpxvdsrw0vzzp3iaag3wh4z8ygl7fkswgjppp2fz2zhhqh93k2w";
|
||||
rev = "v${version}";
|
||||
sha256 = "0mr86z37yycrqwbrmsiayi1vqrgpjq0pn1c3p1qrngipkw45jnn0";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [ autoreconfHook ];
|
||||
@ -19,5 +19,4 @@ stdenv.mkDerivation {
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.unix;
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -11,11 +11,11 @@ assert (ch4backend.pname == "ucx" || ch4backend.pname == "libfabric");
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "mpich";
|
||||
version = "4.0.1";
|
||||
version = "4.0.2";
|
||||
|
||||
src = fetchurl {
|
||||
url = "https://www.mpich.org/static/downloads/${version}/mpich-${version}.tar.gz";
|
||||
sha256 = "11rnljqwz6mr88ybj726mk710h7gvz20hy7labmz4jkkaa0gx8b6";
|
||||
sha256 = "0hnxvqhhscp3h70zf538dhqz9jwmqpwwnj3fqabdk8nli6lg2hjs";
|
||||
};
|
||||
|
||||
configureFlags = [
|
||||
|
@ -15,5 +15,6 @@ buildNimPackage rec {
|
||||
description = "Temporary files and folders";
|
||||
license = [ lib.licenses.mit ];
|
||||
maintainers = [ maintainers.ehmry ];
|
||||
mainProgram = "tempfile_seeder";
|
||||
};
|
||||
}
|
||||
|
@ -8,14 +8,14 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "bc-python-hcl2";
|
||||
version = "0.3.37";
|
||||
version = "0.3.39";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
hash = "sha256-+Wr/JF9es2LQhQ5rc0iyGZa0Di5CsFo9k36WI7jrOqs=";
|
||||
hash = "sha256-JMQ2sLgAnMJ1/0nR8LgKbpPB43gVKtCtrZKr/T4p0O8=";
|
||||
};
|
||||
|
||||
# Nose is required during build process, so can not use `checkInputs`.
|
||||
|
@ -6,27 +6,28 @@
|
||||
, lxml
|
||||
, packageurl-python
|
||||
, poetry-core
|
||||
, pytestCheckHook
|
||||
, python
|
||||
, pythonOlder
|
||||
, requirements-parser
|
||||
, setuptools
|
||||
, toml
|
||||
, types-setuptools
|
||||
, types-toml
|
||||
, xmldiff
|
||||
}:
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "cyclonedx-python-lib";
|
||||
version = "2.0.0";
|
||||
version = "2.2.0";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.6";
|
||||
disabled = pythonOlder "3.9";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "CycloneDX";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
hash = "sha256-S1bcUCHe4UYJuSHI8LMQZ/reS6YAE0hxrpw+QweFm/8=";
|
||||
hash = "sha256-QylA3bf0P65prR74H5+Sm51xWjjhOYpe4jHX7m/f6mI=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@ -46,13 +47,21 @@ buildPythonPackage rec {
|
||||
checkInputs = [
|
||||
jsonschema
|
||||
lxml
|
||||
pytestCheckHook
|
||||
xmldiff
|
||||
];
|
||||
|
||||
pythonImportsCheck = [
|
||||
"cyclonedx"
|
||||
];
|
||||
|
||||
checkPhase = ''
|
||||
runHook preCheck
|
||||
# Tests require network access
|
||||
rm tests/test_output_json.py
|
||||
${python.interpreter} -m unittest discover -s tests -v
|
||||
runHook postCheck
|
||||
'';
|
||||
|
||||
meta = with lib; {
|
||||
description = "Python library for generating CycloneDX SBOMs";
|
||||
homepage = "https://github.com/CycloneDX/cyclonedx-python-lib";
|
||||
|
@ -17,5 +17,6 @@ buildPythonPackage rec {
|
||||
meta = flatbuffers.meta // {
|
||||
description = "Python runtime library for use with the Flatbuffers serialization format";
|
||||
maintainers = with lib.maintainers; [ wulfsta ];
|
||||
mainProgram = "flatc";
|
||||
};
|
||||
}
|
||||
|
@ -7,7 +7,7 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "motionblinds";
|
||||
version = "0.6.4";
|
||||
version = "0.6.5";
|
||||
format = "setuptools";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
@ -15,8 +15,8 @@ buildPythonPackage rec {
|
||||
src = fetchFromGitHub {
|
||||
owner = "starkillerOG";
|
||||
repo = "motion-blinds";
|
||||
rev = version;
|
||||
sha256 = "sha256-k0o6zGhuQPCh9bxXd7v9Hfjo1vKmf5kpw7MGJ31/1Mw=";
|
||||
rev = "refs/tags/${version}";
|
||||
sha256 = "sha256-RAGsVHi/f+0gIzVomhC8h3JvoD4EEe6dK9PBi5daTgU=";
|
||||
};
|
||||
|
||||
propagatedBuildInputs = [
|
||||
|
@ -6,12 +6,12 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "policyuniverse";
|
||||
version = "1.4.0.20220110";
|
||||
version = "1.5.0.20220414";
|
||||
disabled = pythonOlder "3.7";
|
||||
|
||||
src = fetchPypi {
|
||||
inherit pname version;
|
||||
sha256 = "sha256-EWuAhVTX6nXvyXtMuQQIVUbbRZNO8xUXXLR1XHpEid4=";
|
||||
sha256 = "sha256-BtNxU5NdOJfJejN4RpsUJJytWkQxJxbNjnY8hLPb3q0=";
|
||||
};
|
||||
|
||||
# Tests are not shipped and there are no GitHub tags
|
||||
|
@ -12,7 +12,7 @@
|
||||
|
||||
buildPythonPackage rec {
|
||||
pname = "pycep-parser";
|
||||
version = "0.3.3";
|
||||
version = "0.3.4";
|
||||
format = "pyproject";
|
||||
|
||||
disabled = pythonOlder "3.7";
|
||||
@ -21,7 +21,7 @@ buildPythonPackage rec {
|
||||
owner = "gruebel";
|
||||
repo = "pycep";
|
||||
rev = version;
|
||||
hash = "sha256-7WnAP2NU923fBN1wy44OAiLA1UxKkM8jc/rLHwutAas=";
|
||||
hash = "sha256-o2sYPvZVevDqZV8EtKWTL2zHHzX2kmTZ4iVHsUhFv7M=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
@ -41,7 +41,7 @@ buildPythonPackage rec {
|
||||
|
||||
postPatch = ''
|
||||
substituteInPlace pyproject.toml \
|
||||
--replace 'regex = "^2022.3.2"' 'regex = "*"'
|
||||
--replace 'regex = "^2022.3.15"' 'regex = "*"'
|
||||
'';
|
||||
|
||||
pythonImportsCheck = [
|
||||
|
@ -32,13 +32,13 @@ with py.pkgs;
|
||||
|
||||
buildPythonApplication rec {
|
||||
pname = "checkov";
|
||||
version = "2.0.1034";
|
||||
version = "2.0.1065";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bridgecrewio";
|
||||
repo = pname;
|
||||
rev = version;
|
||||
hash = "sha256-amSgg/6yYaLKzwkO7dq06zvh4744RyTVhd/tdurHKa4=";
|
||||
hash = "sha256-q51do9Kbl85p+wOMnFM4QpjezHll8sTmw8vffWcQrRE=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = with py.pkgs; [
|
||||
@ -95,7 +95,7 @@ buildPythonApplication rec {
|
||||
substituteInPlace setup.py \
|
||||
--replace "cyclonedx-python-lib>=0.11.0,<1.0.0" "cyclonedx-python-lib>=0.11.0" \
|
||||
--replace "prettytable>=3.0.0" "prettytable" \
|
||||
--replace "pycep-parser==0.3.3" "pycep-parser"
|
||||
--replace "pycep-parser==0.3.4" "pycep-parser"
|
||||
'';
|
||||
|
||||
preCheck = ''
|
||||
|
@ -29,5 +29,6 @@ buildGoModule rec {
|
||||
'';
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
mainProgram = "gazelle";
|
||||
};
|
||||
}
|
||||
|
@ -22,5 +22,6 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/kubernetes/repo-infra";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
mainProgram = "kazel";
|
||||
};
|
||||
}
|
||||
|
@ -94,5 +94,6 @@ stdenv.mkDerivation rec {
|
||||
changelog = "https://git.build2.org/cgit/build2/tree/NEWS";
|
||||
platforms = platforms.all;
|
||||
maintainers = with maintainers; [ hiro98 r-burns ];
|
||||
mainProgram = "b";
|
||||
};
|
||||
}
|
||||
|
@ -26,6 +26,7 @@ buildGoPackage rec {
|
||||
'';
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ AndersonTorres ];
|
||||
mainProgram = "mk";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -21,5 +21,6 @@ buildRustPackage rec {
|
||||
license = lib.licenses.mit;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = [lib.maintainers.nthorne];
|
||||
mainProgram = "clog";
|
||||
};
|
||||
}
|
||||
|
@ -20,6 +20,7 @@ buildGoPackage rec {
|
||||
description = "Very simple compile daemon for Go";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ ];
|
||||
mainProgram = "CompileDaemon";
|
||||
inherit (src.meta) homepage;
|
||||
};
|
||||
}
|
||||
|
@ -24,5 +24,6 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/buildkite/cli";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ groodt ];
|
||||
mainProgram = "bk";
|
||||
};
|
||||
}
|
||||
|
@ -43,13 +43,13 @@ let
|
||||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "github-runner";
|
||||
version = "2.290.0";
|
||||
version = "2.290.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "actions";
|
||||
repo = "runner";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-5ASKWDtASVtGDPn68tjjx8ZTVv1E14M26OCDpMJ+nJU=";
|
||||
hash = "sha256-YUV66yiUdS2/ORZS7a7coqyzoXM/tnK0egEeXWLPNl0=";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [
|
||||
|
@ -31,6 +31,7 @@ stdenv.mkDerivation rec {
|
||||
description = "Activate/deactivate/verify checksums in offline PostgreSQL clusters";
|
||||
homepage = "https://github.com/credativ/pg_checksums";
|
||||
maintainers = [ maintainers.marsam ];
|
||||
mainProgram = "pg_checksums_ext";
|
||||
platforms = postgresql.meta.platforms;
|
||||
license = licenses.postgresql;
|
||||
};
|
||||
|
@ -22,5 +22,6 @@ buildGoModule rec {
|
||||
description = "A TUI for viewing and editing database files";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ izorkin ];
|
||||
mainProgram = "sqlite3-viewer";
|
||||
};
|
||||
}
|
||||
|
@ -63,6 +63,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/martinpaljak/GlobalPlatformPro";
|
||||
license = with licenses; [ lgpl3 ];
|
||||
maintainers = with maintainers; [ ekleog ];
|
||||
mainProgram = "gp";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -26,5 +26,6 @@ buildGoModule rec {
|
||||
description = "A golang mock generator from interfaces";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ svrana ];
|
||||
mainProgram = "minimock";
|
||||
};
|
||||
}
|
||||
|
@ -17,6 +17,7 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/vektra/mockery";
|
||||
description = "A mock code autogenerator for Golang";
|
||||
maintainers = with maintainers; [ fbrs ];
|
||||
mainProgram = "mockery";
|
||||
license = licenses.bsd3;
|
||||
};
|
||||
}
|
||||
|
@ -24,5 +24,6 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/go-swagger/go-swagger";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ kalbasit ];
|
||||
mainProgram = "swagger";
|
||||
};
|
||||
}
|
||||
|
@ -17,6 +17,7 @@ buildGoPackage rec {
|
||||
src.meta // {
|
||||
description = "Utility to convert JSON to and from HJSON";
|
||||
maintainers = with maintainers; [ ehmry ];
|
||||
mainProgram = "hjson-cli";
|
||||
license = licenses.mit;
|
||||
};
|
||||
}
|
||||
|
@ -22,5 +22,6 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/jsonnet-bundler/jsonnet-bundler";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ preisschild ];
|
||||
mainProgram = "jb";
|
||||
};
|
||||
}
|
||||
|
@ -24,5 +24,6 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/equinix/metal-cli/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ Br1ght0ne nshalman ];
|
||||
mainProgram = "metal";
|
||||
};
|
||||
}
|
||||
|
@ -20,5 +20,6 @@ buildGoModule rec {
|
||||
homepage = "https://github.com/src-d/go-license-detector";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ dtzWill ];
|
||||
mainProgram = "license-detector";
|
||||
};
|
||||
}
|
||||
|
@ -52,6 +52,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/NXPmicro/mfgtools";
|
||||
license = licenses.bsd3;
|
||||
maintainers = with maintainers; [ bmilanov jraygauthier ];
|
||||
mainProgram = "uuu";
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
||||
|
@ -28,5 +28,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ maintainers.qyliss ];
|
||||
mainProgram = "semver";
|
||||
};
|
||||
}
|
||||
|
@ -70,5 +70,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.zlib;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ pombeirp ];
|
||||
mainProgram = "makensis";
|
||||
};
|
||||
}
|
||||
|
@ -106,6 +106,7 @@ in stdenv.mkDerivation rec {
|
||||
platforms = platforms.unix;
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ tesq0 ericdallo corngood ];
|
||||
mainProgram = "omnisharp";
|
||||
};
|
||||
|
||||
}
|
||||
|
@ -20,5 +20,6 @@ buildGoModule rec {
|
||||
license = licenses.asl20;
|
||||
platforms = platforms.unix;
|
||||
maintainers = [ ];
|
||||
mainProgram = "prometheus-packet-sd";
|
||||
};
|
||||
}
|
||||
|
@ -2,13 +2,13 @@
|
||||
|
||||
buildGoPackage rec {
|
||||
pname = "protoc-gen-twirp";
|
||||
version = "8.1.1";
|
||||
version = "8.1.2";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "twitchtv";
|
||||
repo = "twirp";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-PnL7jgxAx/Xk/wajtQ+Q1G9KLes2NVANF2YmBcGFqe0=";
|
||||
sha256 = "sha256-Nxh10jldRcNelfrLAbJanRN+YiK8uPHBw9fV1Uchbyg=";
|
||||
};
|
||||
|
||||
goPackagePath = "github.com/twitchtv/twirp";
|
||||
|
@ -18,5 +18,6 @@ buildGoModule rec {
|
||||
description = "Fast, powerful, yet easy to use template engine for Go";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ chiiruno ];
|
||||
mainProgram = "qtc";
|
||||
};
|
||||
}
|
||||
|
@ -32,5 +32,6 @@ rustPlatform.buildRustPackage rec {
|
||||
homepage = "https://github.com/sagiegurari/duckscript";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ mkg20001 ];
|
||||
mainProgram = "duck";
|
||||
};
|
||||
}
|
||||
|
@ -26,6 +26,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://www.codenix.com/~tolua/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ vrthra ];
|
||||
mainProgram = "tolua++";
|
||||
platforms = with platforms; unix;
|
||||
};
|
||||
}
|
||||
|
@ -37,6 +37,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://udis86.sourceforge.net";
|
||||
license = licenses.bsd2;
|
||||
maintainers = with maintainers; [ timor ];
|
||||
mainProgram = "udcli";
|
||||
description = ''
|
||||
Easy-to-use, minimalistic x86 disassembler library (libudis86)
|
||||
'';
|
||||
|
@ -2,13 +2,13 @@
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "yq-go";
|
||||
version = "4.24.4";
|
||||
version = "4.24.5";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "mikefarah";
|
||||
repo = "yq";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Gkogy8bgm/3Y/8DmK/mS1+L0Ww1c+hlVPKhI88lbISg=";
|
||||
sha256 = "sha256-3rO0BFx/hduERTQ3j90EWUtYTROD63RHwW/U4U+oAfw=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-R40zU0jOc/eIFVDsWG3+4o51iro7Sd7jwtyH/fpWVZs=";
|
||||
|
@ -28,5 +28,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.isc;
|
||||
platforms = platforms.all;
|
||||
maintainers = [ maintainers.leenaars ];
|
||||
mainProgram = "kfcgi";
|
||||
};
|
||||
}
|
||||
|
@ -23,6 +23,7 @@ stdenv.mkDerivation {
|
||||
'';
|
||||
homepage = "https://github.com/Kamal-Sadek/Liberal-Crime-Squad";
|
||||
maintainers = [ maintainers.rardiol ];
|
||||
mainProgram = "crimesquad";
|
||||
license = licenses.gpl2;
|
||||
platforms = platforms.all;
|
||||
};
|
||||
|
@ -32,5 +32,6 @@ in stdenv.mkDerivation {
|
||||
license = lib.licenses.gpl3Only;
|
||||
platforms = lib.platforms.unix;
|
||||
maintainers = with lib.maintainers; [ aaronjanse neonfuz ];
|
||||
mainProgram = "minecraft-server";
|
||||
};
|
||||
}
|
||||
|
@ -37,5 +37,6 @@ stdenv.mkDerivation rec {
|
||||
license = licenses.mit;
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ jyooru ];
|
||||
mainProgram = "minecraft-server";
|
||||
};
|
||||
}
|
||||
|
@ -94,5 +94,6 @@ stdenv.mkDerivation rec {
|
||||
|
||||
platforms = platforms.unix;
|
||||
maintainers = with maintainers; [ mikroskeem m3tti ];
|
||||
mainProgram = "quake";
|
||||
};
|
||||
}
|
||||
|
@ -29,6 +29,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "http://tintin.sourceforge.net";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ lovek323 ];
|
||||
mainProgram = "tt++";
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
||||
|
@ -25,6 +25,7 @@ stdenv.mkDerivation rec {
|
||||
homepage = "https://github.com/periklis/lguf-brightness";
|
||||
license = licenses.lgpl21Plus;
|
||||
maintainers = with maintainers; [ periklis ];
|
||||
mainProgram = "lguf_brightness";
|
||||
platforms = with platforms; linux ++ darwin;
|
||||
};
|
||||
}
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
Reference in New Issue
Block a user