Merge pull request #117190 from siraben/darwin-mass-fix-buildInputs=0

This commit is contained in:
Sandro 2021-03-22 12:04:15 +01:00 committed by GitHub
commit e905e228ef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
11 changed files with 12 additions and 13 deletions

View File

@ -21,6 +21,5 @@ buildGoPackage rec {
longDescription = "The Hex Editor From Hell!";
license = with licenses; [ mit ];
maintainers = with maintainers; [ ramkromberg ];
platforms = with platforms; linux;
};
}

View File

@ -57,6 +57,6 @@ python3Packages.buildPythonApplication rec {
'';
license = lib.licenses.gpl3;
maintainers = [ lib.maintainers.steveej ];
platforms = lib.platforms.linux;
platforms = lib.platforms.unix;
};
}

View File

@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
homepage = "https://help.gnome.org/users/gnome-help/";
license = licenses.cc-by-30;
maintainers = teams.gnome.members;
platforms = platforms.linux;
platforms = platforms.all;
};
}

View File

@ -53,6 +53,7 @@ stdenv.mkDerivation {
description = "Yet another Lisp variant which compiles to Lua";
license = licenses.bsd3;
maintainers = with maintainers; [ CrazedProgrammer ];
platforms = platforms.all;
};
passthru = {

View File

@ -26,5 +26,6 @@ stdenv.mkDerivation {
description = "A lightweight IDE for Clojure";
homepage = "https://github.com/arthuredelstein/clooj";
license = lib.licenses.bsd3;
platforms = lib.platforms.all;
};
}

View File

@ -31,7 +31,7 @@ buildPythonApplication rec {
meta = with lib; {
homepage = "https://github.com/kubespray/kargo-cli";
description = "A tool helps to deploy a kubernetes cluster with Ansible";
platforms = platforms.linux;
platforms = platforms.all;
license = licenses.gpl3;
maintainers = with maintainers; [ ];
};

View File

@ -29,6 +29,6 @@ python3Packages.buildPythonApplication {
homepage = "https://blog.didierstevens.com/programs/pdf-tools/";
license = licenses.publicDomain;
maintainers = [ maintainers.lightdiscord ];
platforms = platforms.linux;
platforms = platforms.all;
};
}

View File

@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
'';
homepage = "https://github.com/graysky2/profile-cleaner";
license = lib.licenses.mit;
platforms = lib.platforms.linux;
platforms = lib.platforms.all;
maintainers = [ lib.maintainers.devhell ];
};
}

View File

@ -1,7 +1,7 @@
{ lib, stdenv, fetchFromGitHub, makeWrapper
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper
, trash-cli, coreutils, which, getopt }:
stdenv.mkDerivation rec {
stdenvNoCC.mkDerivation rec {
pname = "rmtrash";
version = "1.14";
@ -12,9 +12,6 @@ stdenv.mkDerivation rec {
sha256 = "0wfb2ykzlsxyqn9krfsis9jxhaxy3pxl71a4f15an1ngfndai694";
};
dontConfigure = true;
dontBuild = true;
nativeBuildInputs = [ makeWrapper ];
installPhase = ''
@ -35,5 +32,6 @@ stdenv.mkDerivation rec {
'';
license = licenses.gpl3Plus;
maintainers = with maintainers; [ peelz ];
platforms = platforms.all;
};
}

View File

@ -30,6 +30,6 @@ stdenv.mkDerivation rec {
license = licenses.gpl2Plus;
maintainers = with maintainers; [ makefu ];
broken = stdenv.isAarch64;
platforms = platforms.linux;
platforms = platforms.unix;
};
}

View File

@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
meta = with lib; {
description = "Command line interface for processing media filmed on GoPro HERO 3, 4, 5, 6, and 7 cameras";
homepage = "https://github.com/KonradIT/gopro-linux";
platforms = platforms.linux;
platforms = platforms.unix;
license = licenses.gpl3;
maintainers = with maintainers; [ jonringer ];
};