Merge pull request #117190 from siraben/darwin-mass-fix-buildInputs=0
This commit is contained in:
commit
e905e228ef
@ -21,6 +21,5 @@ buildGoPackage rec {
|
|||||||
longDescription = "The Hex Editor From Hell!";
|
longDescription = "The Hex Editor From Hell!";
|
||||||
license = with licenses; [ mit ];
|
license = with licenses; [ mit ];
|
||||||
maintainers = with maintainers; [ ramkromberg ];
|
maintainers = with maintainers; [ ramkromberg ];
|
||||||
platforms = with platforms; linux;
|
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -57,6 +57,6 @@ python3Packages.buildPythonApplication rec {
|
|||||||
'';
|
'';
|
||||||
license = lib.licenses.gpl3;
|
license = lib.licenses.gpl3;
|
||||||
maintainers = [ lib.maintainers.steveej ];
|
maintainers = [ lib.maintainers.steveej ];
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -36,6 +36,6 @@ stdenv.mkDerivation rec {
|
|||||||
homepage = "https://help.gnome.org/users/gnome-help/";
|
homepage = "https://help.gnome.org/users/gnome-help/";
|
||||||
license = licenses.cc-by-30;
|
license = licenses.cc-by-30;
|
||||||
maintainers = teams.gnome.members;
|
maintainers = teams.gnome.members;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -53,6 +53,7 @@ stdenv.mkDerivation {
|
|||||||
description = "Yet another Lisp variant which compiles to Lua";
|
description = "Yet another Lisp variant which compiles to Lua";
|
||||||
license = licenses.bsd3;
|
license = licenses.bsd3;
|
||||||
maintainers = with maintainers; [ CrazedProgrammer ];
|
maintainers = with maintainers; [ CrazedProgrammer ];
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
passthru = {
|
||||||
|
@ -26,5 +26,6 @@ stdenv.mkDerivation {
|
|||||||
description = "A lightweight IDE for Clojure";
|
description = "A lightweight IDE for Clojure";
|
||||||
homepage = "https://github.com/arthuredelstein/clooj";
|
homepage = "https://github.com/arthuredelstein/clooj";
|
||||||
license = lib.licenses.bsd3;
|
license = lib.licenses.bsd3;
|
||||||
|
platforms = lib.platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ buildPythonApplication rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
homepage = "https://github.com/kubespray/kargo-cli";
|
homepage = "https://github.com/kubespray/kargo-cli";
|
||||||
description = "A tool helps to deploy a kubernetes cluster with Ansible";
|
description = "A tool helps to deploy a kubernetes cluster with Ansible";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.all;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ ];
|
maintainers = with maintainers; [ ];
|
||||||
};
|
};
|
||||||
|
@ -29,6 +29,6 @@ python3Packages.buildPythonApplication {
|
|||||||
homepage = "https://blog.didierstevens.com/programs/pdf-tools/";
|
homepage = "https://blog.didierstevens.com/programs/pdf-tools/";
|
||||||
license = licenses.publicDomain;
|
license = licenses.publicDomain;
|
||||||
maintainers = [ maintainers.lightdiscord ];
|
maintainers = [ maintainers.lightdiscord ];
|
||||||
platforms = platforms.linux;
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
homepage = "https://github.com/graysky2/profile-cleaner";
|
homepage = "https://github.com/graysky2/profile-cleaner";
|
||||||
license = lib.licenses.mit;
|
license = lib.licenses.mit;
|
||||||
platforms = lib.platforms.linux;
|
platforms = lib.platforms.all;
|
||||||
maintainers = [ lib.maintainers.devhell ];
|
maintainers = [ lib.maintainers.devhell ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
{ lib, stdenv, fetchFromGitHub, makeWrapper
|
{ lib, stdenvNoCC, fetchFromGitHub, makeWrapper
|
||||||
, trash-cli, coreutils, which, getopt }:
|
, trash-cli, coreutils, which, getopt }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenvNoCC.mkDerivation rec {
|
||||||
pname = "rmtrash";
|
pname = "rmtrash";
|
||||||
version = "1.14";
|
version = "1.14";
|
||||||
|
|
||||||
@ -12,9 +12,6 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "0wfb2ykzlsxyqn9krfsis9jxhaxy3pxl71a4f15an1ngfndai694";
|
sha256 = "0wfb2ykzlsxyqn9krfsis9jxhaxy3pxl71a4f15an1ngfndai694";
|
||||||
};
|
};
|
||||||
|
|
||||||
dontConfigure = true;
|
|
||||||
dontBuild = true;
|
|
||||||
|
|
||||||
nativeBuildInputs = [ makeWrapper ];
|
nativeBuildInputs = [ makeWrapper ];
|
||||||
|
|
||||||
installPhase = ''
|
installPhase = ''
|
||||||
@ -35,5 +32,6 @@ stdenv.mkDerivation rec {
|
|||||||
'';
|
'';
|
||||||
license = licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
maintainers = with maintainers; [ peelz ];
|
maintainers = with maintainers; [ peelz ];
|
||||||
|
platforms = platforms.all;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -30,6 +30,6 @@ stdenv.mkDerivation rec {
|
|||||||
license = licenses.gpl2Plus;
|
license = licenses.gpl2Plus;
|
||||||
maintainers = with maintainers; [ makefu ];
|
maintainers = with maintainers; [ makefu ];
|
||||||
broken = stdenv.isAarch64;
|
broken = stdenv.isAarch64;
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ stdenv.mkDerivation rec {
|
|||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Command line interface for processing media filmed on GoPro HERO 3, 4, 5, 6, and 7 cameras";
|
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";
|
homepage = "https://github.com/KonradIT/gopro-linux";
|
||||||
platforms = platforms.linux;
|
platforms = platforms.unix;
|
||||||
license = licenses.gpl3;
|
license = licenses.gpl3;
|
||||||
maintainers = with maintainers; [ jonringer ];
|
maintainers = with maintainers; [ jonringer ];
|
||||||
};
|
};
|
||||||
|
Loading…
x
Reference in New Issue
Block a user