Merge pull request #16946 from phanimahesh/fix-16198
Fix typo: s/propogate/propagate/
This commit is contained in:
commit
2e986016d0
|
@ -16,7 +16,7 @@ python3Packages.buildPythonApplication {
|
|||
|
||||
doCheck = false;
|
||||
|
||||
propogatedBuildInputs = [ python3 ];
|
||||
propagatedBuildInputs = [ python3 ];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A text scroller for use with panels and shells";
|
||||
|
|
|
@ -1126,7 +1126,7 @@ rec {
|
|||
llvmPackages.llvm
|
||||
] ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
|
||||
|
||||
propogatedBuildInputs = [
|
||||
propagatedBuildInputs = [
|
||||
rustracerd
|
||||
];
|
||||
|
||||
|
|
|
@ -4,7 +4,7 @@
|
|||
llvmPackages.llvm
|
||||
] ++ stdenv.lib.optional stdenv.isDarwin Cocoa;
|
||||
|
||||
propogatedBuildInputs = [
|
||||
propagatedBuildInputs = [
|
||||
rustracerd
|
||||
];
|
||||
|
||||
|
|
|
@ -19,7 +19,7 @@ buildPythonPackage rec {
|
|||
# remove messing with shipped binary
|
||||
patches = [ ./setup.patch ];
|
||||
|
||||
# not sure if these need to be propogated or not?
|
||||
# not sure if these need to be propagated or not?
|
||||
propagatedBuildInputs = [
|
||||
pexpect
|
||||
pyGtkGlade
|
||||
|
|
|
@ -27,7 +27,7 @@ stdenv.mkDerivation rec {
|
|||
./fix-curses.patch
|
||||
];
|
||||
|
||||
# Should I be using pygtk's propogated build inputs?
|
||||
# Should I be using pygtk's propagated build inputs?
|
||||
# !!! Should use makeWrapper.
|
||||
postPatch = ''
|
||||
# We don't have "python2".
|
||||
|
|
Loading…
Reference in New Issue